-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (20 loc) · 762 Bytes
/
package.json
File metadata and controls
22 lines (20 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"devDependencies": {
"@types/bun": "^1.2.11",
"@types/node": "^22.15.3",
"bun-types": "^1.2.11",
"typescript": "^5.8.3"
},
"dependencies": {
"elysia": "^1.2.25"
},
"scripts": {
"start:backend": "bun run index.ts",
"dev:backend": "bun --watch run index.ts",
"build:frontend": "bun build ./www/misc/js/main.ts --outdir ./www/dist/js --target browser --sourcemap",
"watch:frontend": "bun build ./www/misc/js/main.ts --outdir ./www/dist/js --target browser --sourcemap --watch",
"typecheck:frontend": "tsc --project ./www/tsconfig.json",
"typecheck": "bun run typecheck:frontend && bun run typecheck:backend",
"dev": "echo 'Starting dev servers...' && bun run watch:frontend & bun run dev:backend"
}
}