-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "project-name",
"title": "Project Title",
"description": "A Bedstack application",
"type": "module",
"scripts": {
"test": "bun test",
"dev": "bun run --watch src/index.ts",
"build": "bun run scripts/build.sh",
"preview": "./dist/server",
"fix": "biome check --write",
"check": "biome check",
"check:errors": "biome check --diagnostic-level=error",
"typecheck": "tsc --noEmit",
"clean": "rimraf node_modules",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"db:seed": "bun run drizzle/seed.ts",
"db:reset": "bun run drizzle/reset.ts"
},
"dependencies": {
"@bedtime-coders/elysia-openapi": "^1.1.0",
"@elysiajs/eden": "^1.3.2",
"@yolk-oss/elysia-env": "^3.0.0",
"drizzle-orm": "^0.44.2",
"elysia": "^1.3.5",
"http-status-codes": "^2.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/bun": "^1.2.18",
"better-sqlite3": "^12.2.0",
"chalk": "^5.4.1",
"drizzle-kit": "^0.31.4",
"drizzle-seed": "^0.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"module": "src/index.js",
"trustedDependencies": [
"@biomejs/biome"
]
}