-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.99 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
{
"name": "code-monkey-clash",
"version": "0.1.3",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:server": "bun --hot run src/index.tsx",
"dev:client": "bun build ./src/client/client.ts --outdir ./public --watch",
"dev:tailwind": "tailwindcss -i ./src/tailwind.css -o ./public/tailwind.css --watch",
"dev": "concurrently \"bun:dev:server\" \"bun:dev:client\" \"bun:dev:tailwind\"",
"build:tailwind": "tailwindcss -i ./src/tailwind.css -o ./public/tailwind.css",
"build:server": "bun build --target=bun ./src/index.tsx --outfile=dist/index.js",
"build:client": "bun build --target=bun ./src/client/client.ts --outdir ./public",
"build": "bun run --target=bun build:server && bun run --target=bun build:tailwind && bun run --target=bun build:client",
"format:check": "biome format ./src",
"format": "biome format ./src --write",
"lint": "biome lint ./src",
"check": "biome check --write ./src",
"typecheck": "tsc --noEmit",
"benchmark": "bun run --target=bun tooling/benchmark.ts",
"simulate": "bun run build && bun run --target=bun tooling/simulate.ts"
},
"dependencies": {
"@elysiajs/static": "^1.0.3",
"@elysiajs/stream": "^1.0.2",
"@formkit/auto-animate": "^0.8.2",
"@kitajs/html": "^4.1.0",
"@kitajs/ts-html-plugin": "4.0.1",
"chart.js": "^4.4.3",
"chartjs-adapter-date-fns": "^3.0.0",
"elysia": "^1.0.24",
"html-escaper": "^3.0.3",
"htmx-ext-response-targets": "^2.0.0",
"htmx-ext-sse": "^2.2.1",
"htmx.org": "2.0.1",
"hyperscript.org": "^0.9.12",
"lit": "^3.1.4"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@tailwindcss/typography": "^0.5.13",
"@total-typescript/shoehorn": "^0.1.2",
"@types/bun": "^1.1.5",
"@types/html-escaper": "^3.0.2",
"bun-types": "1.1.21",
"concurrently": "^8.2.2",
"daisyui": "^4.12.8",
"mitata": "^0.1.11",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
},
"module": "src/index.js"
}