-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.3 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
{
"name": "express-boillerplate-restfullapi",
"version": "1.4",
"description": "express boilerplate restfullapi with mongodb",
"main": "server.js",
"scripts": {
"prod": "pm2 server.js",
"dev": "nodemon --max-old-space-size=2048 --legacy-watch server.js",
"test": "cross-env NODE_ENV=test jest -i --colors --verbose --detectOpenHandles --no-cache",
"test:mocha": "mocha",
"test:watch": "jest -i --watchAll",
"test:coverage": "NODE_ENV=test jest --coverage --detectOpenHandles",
"coverage:coveralls": "jest -i --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint --fix --ext .js",
"test:load": "npx autocannon -c 100 -d 5 -p 10 localhost:4000/v1/users",
"coverage": "nyc npm run test",
"coverage-report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firmanJS/express-boillerplate-restfullapi.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"expressjs",
"boillerplate",
"mongodb",
"structure",
"api",
"restfullapi"
],
"author": "firmanjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/firmanJS/express-boillerplate-restfullapi/issues"
},
"homepage": "https://github.com/firmanJS/express-boillerplate-restfullapi#readme",
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^27.0.3"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.3",
"express-validator": "^6.6.0",
"helmet": "^3.23.3",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mocha": "^8.2.1",
"moment": "^2.27.0",
"mongoose": "^5.12.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"password-hash": "^1.2.2",
"pm2": "^4.5.0",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.1.6",
"xss-clean": "^0.1.1"
}
}