refactor: remove devbox.json init hook

This commit is contained in:
Prad Nukala 2024-10-08 11:53:28 -04:00
parent a8b6eead26
commit 980c474bdf
2 changed files with 2 additions and 22 deletions

View File

@ -30,9 +30,6 @@
"TEMPL_EXPERIMENT": "rawgo" "TEMPL_EXPERIMENT": "rawgo"
}, },
"shell": { "shell": {
"init_hook": [
"cd web && bun install"
],
"scripts": { "scripts": {
"build:docker": [ "build:docker": [
"make local-image" "make local-image"

View File

@ -1,23 +1,6 @@
{ {
"name": "@onsonr/sonr.id", "name": "@onsonr/sonr.id",
"version": "0.0.2", "version": "0.0.2",
"scripts": { "scripts": {},
"fetch:deps": "bun run .deps.mjs", "dependencies": {}
"build:css": "bunx tailwindcss -i ./global/styles/globals.css -o ./assets/css/styles.css",
"build": "bun run fetch:deps && bun run build:css",
"watch": "bunx tailwindcss -i ./global/styles/globals.css -o ./assets/css/styles.css --watch"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.15",
"alpinejs": "^3.14.1",
"htmx.org": "^1.9.12",
"tailwindcss": "^3.3.0",
"tailwindcss-motion": "^0.3.0-beta",
"typescript": "^4.9.0"
},
"dependencies": {
"node-fetch": "^3.3.2",
"sonr-es": "^0.5.3"
}
} }