-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 998 Bytes
/
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
{
"name": "node-rest-server",
"author": "Tanmoy Thander",
"version": "1.2.0",
"private": true,
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js --exec 'npm run eslint && node'",
"apidoc": "apidoc -i ./routes -o ./apidoc",
"eslint": "eslint app.js ./models ./routes ./components ./secrets"
},
"dependencies": {
"assert": "^1.4.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"bson": "^1.1.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "^2.6.4",
"delay": "^2.0.0",
"ejs": "~2.5.6",
"express": "^4.16.4",
"http": "0.0.0",
"jsonwebtoken": "^7.4.1",
"mongoose": "^5.4.2",
"morgan": "^1.9.1",
"path": "^0.12.7",
"q": "^1.5.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}