-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/nodemailer": "^7.0.4",
"@types/pg": "^8.16.0",
"prisma": "^7.2.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"name": "prisma-practice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"better-auth": "^1.4.9",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"esbuild": "^0.27.2",
"express": "^5.2.1",
"get-tsconfig": "^4.13.0",
"nodemailer": "^7.0.12",
"pg": "^8.16.3",
"redis": "^5.12.1",
"resolve-pkg-maps": "^1.0.0",
"stripe": "^22.0.0",
"undici-types": "^7.16.0",
"uuid": "^14.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsx watch src/server.ts",
"seed:admin": "npx tsx src/script/seedAdmin.ts",
"stripe:webhook": "stripe listen --forward-to localhost:5000/webhook",
"build": "prisma generate && tsc && node script/fix-import.js",
"postinstall": "prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module"
}