-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 823 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 823 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "differ",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"cookie-parser": "^1",
"express": "^4",
"http-errors": "^2",
"morgan": "^1",
"pm2": "^6",
"postgres": "^3",
"pug": "^3"
},
"devDependencies": {
"gulp": "^5.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^3.0.0",
"gulp-concat": "^2.6.1",
"gulp-hash-filename": "^4.1.0",
"gulp-uglify": "^3.0.2",
"jasmine": "^5.1.0",
"merge-stream": "^2.0.0",
"ordered-read-streams": "^2.0.0"
},
"nodemonConfig": {
"env": {
"NODE_ENV": "development"
},
"ext": "js,json,css",
"watch": [
"bin",
"public",
"lib",
"routes",
"app.js",
"*.json"
]
}
}