-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"name": "node_starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec tsx src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"test": "jest",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.1.0",
"@supabase/supabase-js": "^2.80.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"postgres": "^3.4.7",
"swagger-ui-express": "^5.0.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"drizzle-kit": "^0.31.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}