-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 967 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 967 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
35
36
37
38
{
"name": "classroom-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:seed": "tsx seed/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@arcjet/inspect": "^1.0.0-beta.15",
"@arcjet/node": "^1.0.0-beta.15",
"@neondatabase/serverless": "^1.0.2",
"apminsight": "^5.2.1",
"better-auth": "^1.4.10",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.2",
"drizzle-kit": "^0.31.8",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}