-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 827 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 827 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
{
"type": "module",
"scripts": {
"dev": "concurrently \"bun run --hot app/app.tsx\" \"tailwindcss -i ./app/styles.css -o ./static/styles.css --watch \"",
"build": "GOOGLE_CLIENT_ID=build GOOGLE_CLIENT_SECRET=build PS_MIGRATE=1 bun run app/app.tsx && tsc --noEmit && tailwindcss -i ./app/styles.css -o ./static/styles.css --minify"
},
"dependencies": {
"@conform-to/zod": "^1.2.2",
"@hono/conform-validator": "^1.0.0",
"@hono/oauth-providers": "^0.6.2",
"consola": "^3.2.3",
"hono": "^4.6.3",
"plainstack": "^0.0.53",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tailwindcss/typography": "^0.5.15",
"@types/bun": "latest",
"concurrently": "^9.0.1",
"daisyui": "^4.11.1",
"tailwindcss": "^3.4.12",
"typescript": "^5.3.3"
}
}