-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 960 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
42
{
"name": "air-quality",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "mocha src/test/*.test.js",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.5",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"joi": "^17.13.3",
"mongodb": "^6.8.0",
"mongoose": "^8.5.4",
"node-cron": "^3.0.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"chai": "^5.1.1",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"nock": "^13.5.5",
"node": "^22.7.0",
"nodemon": "^3.1.4",
"sinon": "^18.0.0",
"supertest": "^7.0.0"
}
}