25 lines
740 B
JSON
25 lines
740 B
JSON
{
|
|
"name": "frontend",
|
|
"version": "1.0.50",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"dev": "bun run tailwind:dev | bun run elxsia:dev",
|
|
"elxsia:dev": "bun --watch src/index.tsx",
|
|
"build": "bun run tailwind:build",
|
|
"start": "bun run src/index.tsx",
|
|
"tailwind:build": "bunx tailwindcss -i ./src/style.css -o ./public/style.css --minify",
|
|
"tailwind:dev": "bunx tailwindcss -i ./src/style.css -o ./public/style.css --watch"
|
|
},
|
|
"dependencies": {
|
|
"@elysiajs/html": "^0.8.0",
|
|
"@elysiajs/static": "^0.8.1",
|
|
"elysia": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "latest",
|
|
"tailwindcss": "^3.4.1",
|
|
"typed-html": "^3.0.1"
|
|
},
|
|
"module": "src/index.js"
|
|
}
|