-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 958 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
{
"name": "g-app",
"version": "0.1.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"server": "nodemon server/server.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"engines": {
"node": "8.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.19.0",
"concurrently": "^3.6.1",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.4.0",
"express": "^4.17.0",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"macaddress": ">=0.2.9",
"moment-js": "^1.1.15",
"mongoose": "^4.13.18",
"nodemon": "^1.19.0",
"tar": ">=4.4.2"
},
"devDependencies": {}
}