-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 863 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
{
"name": "recursive-lab",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"dev:once": "bun src/index.ts",
"start": "bun src/index.ts",
"db:setup": "bun scripts/setup-db.ts",
"db:migrate": "bun scripts/migrate-db.ts",
"db:reset": "rm -f data/lab.db data/lab.db-* && bun scripts/setup-db.ts",
"check": "bun run check:types && bun run check:size && bun run check:chain",
"check:types": "tsc --noEmit",
"check:size": "bun scripts/check-size.ts",
"check:chain": "bun scripts/check-chain.ts",
"test": "bun test ./tests"
},
"dependencies": {
"@elysiajs/html": "^1.4.2",
"@elysiajs/static": "^1.4.10",
"@libsql/client": "^0.17.4",
"elysia": "^1.4.29"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^5.9.3"
}
}