-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "nodejs-api-showcase",
"version": "1.1.1",
"description": "",
"main": "node src/server.js",
"scripts": {
"coverage": "nyc --reporter html --reporter text mocha test --recursive",
"debug": "nodemon src/server.js",
"start": "node src/server.js",
"test": "mocha tests --recursive --timeout 15000 --exit",
"lint": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/eldimious/nodejs-api-showcase.git"
},
"author": "Dimos Botsaris <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/eldimious/nodejs-api-showcase/issues"
},
"homepage": "https://github.com/eldimious/nodejs-api-showcase#readme",
"dependencies": {
"@dimosbotsaris/express-async-handler": "^1.0.2",
"@dimosbotsaris/express-error-handler": "^1.0.2",
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"express-jwt": "^6.1.0",
"express-validator": "^6.14.0",
"express-winston": "^4.2.0",
"helmet": "^5.0.1",
"ioredis": "^4.28.3",
"joi-password-complexity": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.2",
"mongodb": "^4.3.1",
"mongoose": "^6.1.7",
"mongoose-paginate": "^5.0.3",
"mongoose-unique-validator": "^3.0.0",
"morgan": "^1.10.0",
"rate-limiter-flexible": "^2.3.6",
"socket.io": "^4.4.1",
"swagger-ui-express": "^4.3.0",
"throw-http-errors": "2.0.0",
"winston": "^3.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"istanbul": "^0.4.5",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"sinon": "^4.0.0",
"supertest": "^3.0.0"
}
}