-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
42
43
44
45
46
{
"name": "selftest",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "NODE_ENV=dev node app.js",
"prod": "NODE_ENV=prod node app.js",
"standard": "standard --verbose | snazzy",
"precommit": "npm run standard",
"apidoc": "apidoc -i app/ -o public/apidoc/"
},
"repository": {
"type": "git",
"url": "[email protected]:ishuen/structure.git"
},
"dependencies": {
"apidoc": "~0.17",
"body-parser": "~1.17.1",
"config": "~1.26",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"express": "~4.15.2",
"mongodb": "~2.2",
"mongoose": "^4.10.8",
"morgan": "~1.8.1",
"pug": "~2.0.0-beta11",
"serve-favicon": "~2.4.2"
},
"devDependencies": {
"snazzy": "~7.0",
"standard": "~10.0",
"husky": "~0.14"
},
"standard": {
"ignore": [
"/public/apidoc",
"/public/scripts"
]
},
"apidoc": {
"name": "selftest apidoc",
"version": "0.0.1",
"description": "api list",
"title": "apidoc browser title"
}
}