-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "demo",
"version": "1.0.0",
"description": "Demo Structure",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev nodemon --inspect=5021 --config nodemon.js src/server.js",
"staging": "cross-env NODE_ENV=staging nodemon --inspect=5021 --config nodemon.js src/server.js",
"production": "cross-env NODE_ENV=production nodemon --inspect=5001 --config nodemon.js src/server.js",
"test": "mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"apidoc": "^0.26.0",
"array-refactor": "^1.0.10",
"array-to-tree": "^3.3.2",
"async": "3.2.0",
"bcrypt": "^5.0.0",
"body-parser": "1.19.0",
"chalk": "4.1.0",
"config": "3.3.3",
"cors": "2.8.5",
"ejs": "3.1.5",
"eslint-config-airbnb": "18.2.1",
"express": "4.17.1",
"express-status-monitor": "^1.3.3",
"express-validator": "6.9.2",
"flat": "^5.0.2",
"flat-to-nested": "^1.1.1",
"glob": "7.1.6",
"hierarchy-js": "^1.0.4",
"ipware": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"list-to-tree": "^2.2.4",
"mocha": "^8.2.1",
"mongoose": "^5.11.8",
"mongoose-paginate-v2": "^1.3.17",
"mongoose-tree": "^0.2.2",
"nanoid": "^3.1.22",
"nodemailer": "6.4.17",
"shortid": "^2.2.16",
"should": "^13.2.3",
"swagger-ui-express": "^4.1.6",
"underscore": "^1.13.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cross-env": "7.0.3",
"eslint": "7.17.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "5.0.0",
"jest": "^26.6.3",
"nodemon": "2.0.7",
"superagent": "^6.1.0",
"supertest": "^6.1.1"
}
}