-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.09 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.09 KB
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
{
"name": "simulation",
"version": "1.0.0",
"private": true,
"scripts": {
"db:insights": "wrangler d1 insights simulation",
"db:migrate:local": "wrangler d1 migrations apply --local simulation",
"db:migrate:prod": "wrangler d1 migrations apply simulation",
"deploy": "wrangler deploy --minify",
"dev": "wrangler dev",
"dev:css": "tailwindcss build -i src/styles.scss -o assets/built.css -w",
"build": "tailwindcss build -i src/styles.scss -o assets/built.css --minify",
"postinstall": "wrangler types && lefthook install",
"format": "biome format --write .",
"lint": "biome lint --apply .",
"check": "biome check --apply .",
"typecheck": "wrangler types && tsc"
},
"dependencies": {
"clsx": "^2.1.0",
"d1-sql-tag": "^0.3.0",
"hono": "^3.11.2"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@cloudflare/workers-types": "^4.20240208.0",
"@radix-ui/colors": "^0.1.9",
"@tailwindcss/typography": "^0.5.10",
"lefthook": "^1.6.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"wrangler": "^3.28.3"
}
}