-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "express-api-template",
"version": "0.0.0-development",
"repository": "https://github.com/tobitenno/express-api-template-Oauth2.git",
"license": "MIT",
"scripts": {
"start": "node src/server",
"lint": "eslint src",
"lint:fix": "eslint src/ --fix",
"test": "nyc mocha",
"dev": "nodemon",
"build:openapi": "npx swagger-jsdoc -d src/scripts/swaggerDefinition.js src/app/controllers/*.js -o openapi.yaml",
"lint:openapi": "npx @redocly/openapi-cli lint openapi.yaml",
"preview:openapi": "npx @redocly/openapi-cli preview-docs openapi.yaml --config .redoclyrc"
},
"engines": {
"node": ">= 18.0.0"
},
"dependencies": {
"apicache": "^1.6.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"cors": "^2.7.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.5.0",
"mongoose": "^8.13.2",
"mongoose-unique-validator": "^5.0.1",
"prom-client": "^10.2.3",
"redoc-express": "^2.1.0",
"serve-favicon": "^2.5.0",
"swagger-stats": "^0.99.7",
"winston": "^3.17.0",
"yaml": "^2.7.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.26.9",
"chai": "^4.5.0",
"chai-http": "^4.4.0",
"decache": "^4.6.2",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"mocha": "^11.1.0",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.1.9",
"nyc": "^17.1.0",
"prettier": "^3.5.3"
}
}