feat: add initial project setup and first draft

This commit is contained in:
2026-03-01 18:37:58 +01:00
commit 97be729014
19 changed files with 7034 additions and 0 deletions

39
package.json Normal file
View File

@@ -0,0 +1,39 @@
{
"name": "",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint:eslint": "eslint",
"lint:markuplint": "markuplint '**/*.{astro,html}'",
"lint:stylelint": "stylelint ."
},
"dependencies": {
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.17.1",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@markuplint/astro-parser": "^4.6.23",
"@markuplint/ml-config": "^4.8.15",
"cspell": "^9.7.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-prettier": "^5.5.5",
"markuplint": "^4.14.1",
"postcss-html": "^1.8.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"stylelint": "^17.4.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^18.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1"
}
}