-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx src/index.ts",
"build": "prisma generate && tsc",
"postinstall": "node -e \"const fs = require('fs'); if (fs.existsSync('prisma/schema.prisma')) { require('child_process').execSync('prisma generate', { stdio: 'inherit' }); }\""
},
"keywords": [],
"author": "Ajeet Pratpa Singh",
"license": "ISC",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^24.5.1",
"prisma": "^5.22.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"dependencies": {
"@octokit/graphql": "^9.0.1",
"@opensox/shared": "workspace:*",
"@prisma/client": "^5.22.0",
"@trpc/server": "^11.7.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"razorpay": "^2.9.6",
"superjson": "^2.2.5",
"zeptomail": "^6.2.1",
"zod": "^4.1.9"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}