-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 897 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
{
"name": "server",
"version": "1.0.0",
"description": "Server side of ministry tracker app with Nodejs",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "client && npm run start",
"server-install": "npm install",
"client-install": "cd client && npm install",
"install-all": "concurrently \"npm run server-install\" \"npm run client-install\"",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.16",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}