-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 KB
/
package.json
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
{
"name": "uncut-api",
"version": "1.0.0",
"description": "Uncut-API v0.1",
"main": "index.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "jest",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start": "npm run prisma:generate && npm run prisma:migrate && node dist/index.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"keywords": [],
"author": "Mohak Bajaj, Vasu Kansal, Mridul Singh, Sanskar Sisodia",
"license": "ISC",
"dependencies": {
"@prisma/client": "5.18.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jose": "^5.2.2",
"prisma": "^5.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testEnvironment": "node"
}
}