-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (36 loc) · 957 Bytes
/
package.json
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": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node backend/server",
"server": "supervisor backend/server",
"client": "npm start --prefix frontend",
"dev": "npm-run-all --parallel client server",
"NPM_CONFIG_PRODUCTION":"false npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "mykesoftware",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"config": "^3.3.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.12.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"react-datepicker": "^3.8.0",
"react-year-picker": "^0.3.7"
},
"devDependencies": {
"colors": "^1.4.0",
"npm-run-all": "^4.1.5",
"supervisor": "^0.12.0"
}
}