-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 924 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 924 Bytes
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
{
"name": "grind-code-backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"type-check": "tsc",
"build": "prisma generate && tsc",
"dev": "prisma generate && tsx watch src/index",
"vercel-build": "prisma generate && tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@clerk/clerk-sdk-node": "^5.1.6",
"@clerk/express": "^1.3.49",
"@prisma/client": "^6.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"openai": "^4.85.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.13.4",
"prisma": "^6.4.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}