-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.76 KB
/
package.json
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
54
55
56
{
"name": "the-bed-stack",
"title": "The BED Stack",
"version": "0.2.0",
"description": "A RealWorld example for an app in the backend created with Bun, Elysia, and DrizzleORM.",
"scripts": {
"start": "bun run src/main.ts",
"dev": "bun run --watch src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "biome format --write src --no-errors-on-unmatched",
"lint": "biome lint src --no-errors-on-unmatched",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"up": "./scripts/create-start-container-with-env.sh",
"db:generate": "drizzle-kit generate:pg --config=db/config.ts",
"db:migrate": "bun run db/migrate.ts",
"db:push": "drizzle-kit push:pg --config=db/config.ts",
"db:seed": "bun db/seed.ts",
"db:studio": "drizzle-kit studio --config=db/config.ts",
"db:drop": "bun db/drop.ts",
"prepare": "husky install"
},
"dependencies": {
"@elysiajs/swagger": "^0.7.3",
"commander": "^11.0.0",
"drizzle-orm": "^0.28.6",
"drizzle-typebox": "^0.1.1",
"elysia": "^0.7.15",
"jose": "^4.14.6",
"postgres": "3.4.4"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@faker-js/faker": "^8.2.0",
"@types/node": "^20.8.3",
"bun-types": "latest",
"drizzle-kit": "^0.19.13",
"husky": "^8.0.3",
"lint-staged": "^15.0.0",
"pg": "^8.11.3",
"vitepress": "^1.0.0-rc.22"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"module": "src/index.ts",
"type": "module",
"lint-staged": {
"*.json": "biome format --write --no-errors-on-unmatched",
"*.ts": [
"biome lint --apply --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched"
]
}
}