-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 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
{
"name": "wikiscrolls-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "pnpm@10.19.0",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:unit": "jest tests/unit",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:push": "prisma db push",
"prisma:seed": "ts-node prisma/seed.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.4",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.9.1",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@prisma/client": "6.18.0",
"prisma": "6.18.0",
"bcrypt": "^6.0.0",
"cloudinary": "^2.8.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"dotenv-safe": "^9.1.0",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"express-validator": "^7.3.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"pg": "^8.16.3",
"winston": "^3.18.3",
"zod": "^4.1.12"
}
}