-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "contact_api",
"version": "1.0.0",
"description": "a contact REST API",
"main": "server.js",
"engines": {
"node": "^12.14.1"
},
"scripts": {
"start": "node -r esm .",
"preinstall": "npm i -g pm2",
"start:prod": "pm2-runtime ecosystem.config.json",
"start:dev": "pm2-runtime ecosystem.config.json --env development",
"debug": "DEBUG=* node -r esm .",
"test": "mocha ./tests/*",
"docker:build": "sudo docker build . -t"
},
"author": "Florian GOTO",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.7",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-paginate": "^1.0.0",
"express-rate-limit": "^5.0.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.13",
"mongoose-paginate-v2": "^1.3.6",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.0.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pm2": "^4.2.1",
"rate-limit-redis": "^1.7.0",
"faker": "^4.1.0",
"redis": "^2.8.0",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/express-paginate": "^1.0.0",
"@types/express-rate-limit": "^3.3.3",
"@types/faker": "^4.1.7",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongoose": "^5.5.32",
"@types/mongoose-paginate-v2": "^1.3.0",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.3.10",
"@types/node": "^12.12.14",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/rate-limit-redis": "^1.6.0",
"@types/redis": "^2.8.14",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.1",
"eslint": "^6.7.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.1",
"supertest": "^4.0.2"
},
"mocha": {
"require": [
"esm"
]
}
}