-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 831 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 831 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
{
"type": "module",
"private": true,
"scripts": {
"dev": "concurrently \"bun run --hot app/app.tsx\" \"tailwindcss -i ./app/styles.css -o ./static/styles.css --watch \"",
"build": "tsc --noEmit && tailwindcss -i ./app/styles.css -o ./static/styles.css --minify && PS_BUILD=1 bun run app/app.tsx"
},
"dependencies": {
"consola": "^3.2.3",
"hono": "^4.6.3",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"plainstack": "latest",
"shiki": "^1.7.0",
"slugify": "^1.6.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tailwindcss/typography": "^0.5.13",
"@types/bun": "latest",
"@types/markdown-it": "^14.1.1",
"concurrently": "^9.0.1",
"daisyui": "^4.11.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.3.3"
}
}