-
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) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 792 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": "sportz",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node --watch src/index.js",
"start": "node src/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"crud:example": "tsx src/crud-example.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@arcjet/inspect": "^1.1.0",
"@arcjet/node": "^1.1.0",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"pg": "^8.19.0",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.9",
"eslint-config-prettier": "^10.1.8",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}