-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "medistore_backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsx watch src/server.ts",
"seeding": "npx tsx src/scripts/seedingAdmin.ts",
"migrate": "npx prisma migrate dev",
"generate": "npx prisma generate",
"postinstall": "prisma generate",
"build": "prisma generate && tsup src/server.ts --format esm --platform node --target node20 --outDir api --external pg-native"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@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"
},
"dependencies": {
"@openrouter/sdk": "^0.11.2",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@types/ejs": "^3.1.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"better-auth": "^1.4.9",
"cloudinary": "^2.9.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"ejs": "^5.0.1",
"express": "^5.2.1",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"nodemailer": "^7.0.12",
"pg": "^8.16.3",
"stripe": "^22.0.1",
"vercel": "^50.9.6",
"zod": "^4.3.6"
}
}