-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 941 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 941 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": "mini-crm-api",
"version": "0.0.1",
"description": "Mini CRM RESTful API",
"main": "index.js",
"scripts": {
"start": "node server.js",
"postinstall": "apidoc -i app/routes -o apidoc/",
"apidoc": "apidoc -i ./app/routes -o apidoc/",
"dev": "export NODE_ENV=dev && nodemon server.js",
"test": "nyc --reporter=html --reporter=text mocha --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "",
"license": "ISC",
"dependencies": {
"apidoc": "0.17.6",
"body-parser": "1.18.2",
"config": "1.29.0",
"express": "4.16.2",
"mongoose": "4.13.7",
"morgan": "1.9.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.11.16",
"mocha": "~3.3.0",
"nodemon": "1.14.3",
"nyc": "10.3.2"
}
}