-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 KB
/
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
{
"name": "fullstack",
"version": "1.0.0",
"description": "fullstack app with angular and express js",
"main": "index.js",
"engines": {
"node": "8.11.4",
"npm": "5.6.0"
},
"scripts": {
"start": "nodemon index",
"server": "nodemon index",
"test": "echo \"Error: no test specified\" && exit 1",
"client-install": " npm install --prefix client",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run client-install && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.2.13",
"morgan": "^1.9.0",
"multer": "^1.3.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"nodemon": "^1.18.4"
}
}