-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 988 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
{
"name": "meanorders",
"version": "1.0.0",
"description": "Fullstack MEAN Application -- Orders --",
"main": "index.js",
"scripts": {
"start": "node index",
"server": "nodemon index",
"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"
},
"keywords": [
"Express.js",
"Angular"
],
"author": "Aleksey Belchenkov",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.1.7",
"morgan": "^1.9.0",
"multer": "^1.4.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.17.5"
}
}