-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
57
58
59
60
61
62
63
64
{
"name": "buyfast-backend",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "node dist/src/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc",
"clean": "rm -rf dist",
"re": "npm run clean && npm run build",
"db:migrate": "prisma migrate dev --name init",
"db:seed": "prisma db seed",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"prisma": {
"seed": "ts-node prisma/seeds/seeders"
},
"dependencies": {
"@prisma/client": "^6.7.0",
"bcrypt": "^5.1.1",
"cloudinary": "^2.7.0",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"swagger-ui-express": "^5.0.1",
"validator": "^13.15.15",
"zod": "^4.1.9"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.18",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/multer": "^2.0.0",
"@types/node": "^22.15.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/validator": "^13.15.1",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"openapi-types": "^12.1.3",
"prettier": "^3.5.3",
"prisma": "^6.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}