-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 837 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 837 Bytes
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
{
"name": "nrvcontainerday-api",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "webpack",
"build-watch": "webpack -w",
"serve": "nodemon --watch ./dist ./dist/app.js",
"dev": "concurrently \"npm run build-watch\" \"npm run serve\""
},
"dependencies": {
"body-parser": "~1.17.1",
"cors": "^2.8.4",
"debug": "~2.6.3",
"express": "~4.15.2",
"express-basic-auth": "^1.1.2",
"express-joi-validator": "^2.0.0",
"joi": "^10.6.0",
"lowdb": "^0.17.2",
"morgan": "~1.8.1",
"serve-favicon": "~2.4.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"concurrently": "^3.5.0",
"nodemon": "^1.11.0",
"webpack": "^3.5.5"
}
}