-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 861 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 861 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
{
"name": "restify-base",
"version": "0.1.0",
"description": "App base with Restify",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "node index.js",
"startDev": "./node_modules/.bin/nodemon -i node_modules index.js",
"test": "NODE_ENV=test make test"
},
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^8.0.0",
"http-status-codes": "1.0.6",
"lodash": "^4.17.19",
"mongoose": "^5.5.5",
"ms": "^2.1.1",
"nautilustar-debug": "git+https://github.com/nautilustar/nautilustar-debug.git#develop",
"node": "^11.0.0",
"phone": "^2.3.13",
"request": "^2.88.0",
"restify": "^8.3.2"
},
"devDependencies": {
"eslint": "^4.18.2",
"faker": "^3.0.1",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"should": "^8.2.2",
"supertest": "^4.0.2"
}
}