generated from bedstack/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
50
51
52
53
{
"name": "bedstack-lite",
"title": "Bedstack Lite",
"description": "⚡ Stripped version of Bedstack for rapid prototyping",
"type": "module",
"scripts": {
"dev": "bun run --watch src",
"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 bun.lockb dist",
"test:api": "bun run scripts/test/api",
"test:unit": "bun test",
"test": "bun test:api && bun test:unit",
"db": "docker compose up",
"db:start": "docker compose up -d",
"db:stop": "docker compose stop",
"db:restart": "docker compose restart",
"db:down": "docker compose down",
"db:remove": "docker compose down -v",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit migrate",
"db:seed": "bun run scripts/db/seed",
"db:reset": "bun run scripts/db/reset"
},
"dependencies": {
"@elysiajs/static": "^1.3.0",
"@yolk-oss/elysia-env": "^3.0.0",
"chalk": "^5.4.1",
"drizzle-orm": "^0.44.2",
"elysia": "^1.3.5",
"elysiajs-openapi": "^1.1.0",
"http-status-codes": "^2.3.0",
"jose": "^6.0.11",
"radashi": "^12.6.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/bun": "^1.2.18",
"@types/newman": "^5.3.6",
"drizzle-kit": "^0.31.4",
"drizzle-seed": "^0.3.1",
"newman": "^6.2.1",
"pg": "^8.16.3",
"typescript": "^5.8.3"
},
"module": "src/index.js"
}