-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 834 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
{
"name": "mern_lifecycle",
"version": "1.0.0",
"description": "Lifecycle app for sustainable closets",
"main": "server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"prod-client": "npm run build --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\" ",
"postinstall": "(cd frontend && npm install)",
"prod": "npm run server"
},
"author": "Julia Grandury",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.2"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^2.0.21"
}
}