-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 931 Bytes
/
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
{
"name": "test-service",
"description": "test service",
"version": "1.2.3",
"scripts": {
"start": "node app",
"test": "mocha",
"coverage": "nyc --reporter=text --reporter=html mocha"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.3",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-openapi-validator": "^4.13.4",
"lru-cache": "^7.4.0",
"mysql": "^2.18.1",
"mysql2": "^3.9.8",
"nanoid": "^3.3.8",
"sequelize": "^6.13.0",
"prom-client": "^14.0.1",
"swagger-ui-express": "^4.2.0",
"winston": "^3.3.3"
},
"nyc": {
"exclude": [
"app.js",
"logger.js"
]
},
"devDependencies": {
"coffee-script": "~1.6.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"mocha": "^11.0.1",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^15.1.0",
"supertest": "^6.1.6"
}
}