-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 KB
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "set NODE_ENV=test && jest --detectOpenHandles",
"test:load": "set NODE_ENV=test && artillery run --env-file .env test-load.yml",
"start": "ts-node-dev --respawn src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"fs": "^0.0.1-security",
"helmet": "^8.0.0",
"https": "^1.0.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.11.0",
"mongoose": "^8.8.2",
"mongoose-sequence": "^6.0.1",
"node-cron": "^3.0.3",
"node-rsa": "^1.1.1",
"rxjs": "^7.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.1",
"@types/node-cron": "^3.0.11",
"@types/node-rsa": "^1.1.4",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
}
}