@mariozechner/create-app
Version:
CLI for creating deployable web applications with Docker, Caddy, and modern tooling
23 lines • 593 B
JSON
{
"name": "{{name}}",
"version": "1.0.0",
"description": "Static website",
"type": "module",
"scripts": {
"build": "node infra/build.js",
"dev": "./run.sh dev",
"test": "npx tsx --test --test-concurrency=1 src/test/*.test.ts",
"check": "biome check --write . && tsc --noEmit --project .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/node": "^20.11.2",
"husky": "^9.1.1",
"tailwindcss": "^4.1.11",
"@tailwindcss/cli": "^4.1.11",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}