-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (47 loc) · 1.18 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
{
"name": "ecommerce-backend",
"version": "1.0.0",
"description": "",
"main": "./dist/server.js",
"scripts": {
"test": "jest --config jest.config.cjs",
"start": "node ./dist/server.js",
"start:dev": "tsc && nodemon ./dist/server.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@types/cors": "^2.8.19",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.20.0",
"mongoose": "^8.19.1",
"redis": "^5.9.0",
"swagger-ui-express": "^5.0.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.8.1",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"jest": "^29.7.0",
"supertest": "^7.1.4",
"swagger-autogen": "^2.23.7",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}