-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.55 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "meridian",
"engines": { "node": "20.x" },
"bin": {
"meridian": "bin/meridian.js",
"m": "bin/meridian.js",
"mer": "bin/meridian.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^6.21.1",
"scheduler": "^0.27.0",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.10"
},
"scripts": {
"setup": "node bin/meridian.js setup",
"start": "node --preserve-symlinks backend/server.js",
"heroku-prebuild": "chmod +x ./bin/setup_ssh ./bin/fetch_private_deps && ./bin/setup_ssh && ./bin/fetch_private_deps",
"fetch-private": "chmod +x ./bin/setup_ssh ./bin/fetch_private_deps && ./bin/setup_ssh && ./bin/fetch_private_deps",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend && npm install --prefix backend",
"server": "cd backend && nodemon --exec \"node --preserve-symlinks\" server.js",
"client": "cd frontend && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"meridian": "node bin/meridian.js",
"qr-frontend": "node scripts/qr-frontend.js",
"test:backend:routes": "npm --prefix backend run test:routes",
"test:backend": "npm --prefix backend run test:coverage",
"test:frontend": "npm --prefix frontend run test:coverage",
"test:ci": "npm run test:backend && npm run test:frontend"
}
}