Setup FSD
This commit is contained in:
67
package.json
67
package.json
@@ -1,26 +1,43 @@
|
||||
{
|
||||
"name": "nikitapozd_website",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"node": "24.13.0",
|
||||
"pnpm": ">=9.0.0"
|
||||
},
|
||||
"enginesStrict": true,
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro",
|
||||
"preinstall": "node ./scripts/enforce-pnpm.mjs"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tailwindcss/vite": "^4.2.4",
|
||||
"@webtui/css": "^0.1.7",
|
||||
"astro": "^6.1.8",
|
||||
"tailwindcss": "^4.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "2.4.13"
|
||||
}
|
||||
}
|
||||
"name": "nikitapozd_website",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"node": ">=24.13.0 <25",
|
||||
"pnpm": ">=10.28.0"
|
||||
},
|
||||
"enginesStrict": true,
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro",
|
||||
"preinstall": "node ./scripts/enforce-pnpm.mjs",
|
||||
"lint": "astro check --minimumFailingSeverity warning && biome check .",
|
||||
"format": "biome format . --write",
|
||||
"prepare": "husky",
|
||||
"precommit": "lint-staged",
|
||||
"ci": "astro check && biome ci ."
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,jsx,ts,tsx,json,jsonc,css,scss}": [
|
||||
"biome check --no-errors-on-unmatched"
|
||||
],
|
||||
"*.{astro}": [
|
||||
"astro check --minimumFailingSeverity warning"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.9.9",
|
||||
"@tailwindcss/vite": "^4.2.4",
|
||||
"@webtui/css": "^0.1.7",
|
||||
"astro": "^6.1.8",
|
||||
"tailwindcss": "^4.2.4",
|
||||
"typescript": "^6.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "2.4.13",
|
||||
"husky": "^9.1.7",
|
||||
"lint-staged": "^16.4.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user