-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "course-mate",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"prepare": "bun --env-file=./.env.dev prisma generate --sql || (echo 'please set DATABASE_URL in server/.env.dev' && exit 1)",
"dev": "bun --watch src/index.ts",
"check": "tsc",
"clean": "rm target -r || true",
"build": "bun clean && bun check && bun run :build",
":build": "bun build ./src/index.ts --target bun --outfile target/index.js --minify"
},
"prisma": {
"seed": "bun src/seeds/seed-test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hono/zod-validator": "^0.4.3",
"@prisma/client": "5.22.0",
"common": "workspace:common",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"firebase-admin": "^12.2.0",
"hono": "^4.7.1",
"lru-cache": "^11.0.2",
"sharp": "^0.33.5",
"sql-formatter": "^15.4.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"globals": "^15.8.0",
"prisma": "5.22.0",
"typescript": "^5.4.5"
},
"trustedPackages": ["prisma"]
}