-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 904 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 904 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
{
"name": "sportz",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "node --watch src/index.js",
"start": "node src/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "cross-env DATABASE_URL=postgresql://neondb_owner:npg_JFflVL5uqM1v@ep-dark-rain-amnnd4m2.c-5.us-east-1.aws.neon.tech/neondb?sslmode=require&channel_binding=require drizzle-kit migrate"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"pg": "^8.20.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/pg": "^8.20.0",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"zod": "^4.3.6"
}
}