-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
39
40
41
{
"name": "fullstack",
"version": "1.0.0",
"description": "fullstack app with angular and express",
"main": "index.js",
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"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",
"angular"
],
"author": "Aleksandr Kozlovskiy",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.5.2",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.11"
}
}