-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 757 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
{
"name": "backoffice",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "Suppavisor",
"type": "module",
"scripts": {
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"test": "bun test",
"dev": "NODE_ENV=development bun --watch ./src/main.ts",
"db:migrate": "bun run db/migrate.ts",
"db:rollback": "bun run db/migrate.ts rollback"
},
"dependencies": {
"@biomejs/biome": "^2.3.11",
"@hono/arktype-validator": "^2.0.1",
"arktype": "^2.1.29",
"better-auth": "^1.4.17",
"dotenv": "^17.2.3",
"fs-extra": "^11.3.3",
"hono": "^4.11.5"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/node": "^25.0.10",
"bun-types": "^1.3.6",
"typescript": "^5.9.3"
}
}