-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 859 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 859 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --forceExit",
"test:s": "jest --silent --forceExit",
"test:watch": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.1.4",
"exceljs": "^4.4.0",
"express": "^4.18.1",
"jest": "^29.3.1",
"joi": "^17.8.3",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4",
"nodemon": "^2.0.19",
"rate-limiter-flexible": "^5.0.0",
"redis": "^4.6.7",
"supertest": "^6.3.3"
},
"devDependencies": {
"autocannon": "^7.12.0",
"superagent": "^8.0.8"
}
}