-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 763 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 763 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
{
"dependencies": {
"@types/jest": "^29.5.14",
"async": "*",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.17.3",
"jest": "^29.7.0",
"mockingoose": "^2.16.2",
"mongoose": "^8.2.1",
"supertest": "^6.3.4",
"ts-jest": "^29.2.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"scripts": {
"test": "npx jest tests/",
"insert-sample-data": "npx ts-node insert_sample_data.ts",
"remove-sample-data": "npx ts-node remove_db.ts"
}
}