Files
36-character-flower/package.json
2026-04-23 16:41:39 +08:00

62 lines
1.7 KiB
JSON

{
"name": "react-spa-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"commit": "cz",
"dev": "pnpm generate-routes && vite",
"build": "pnpm generate-routes && tsc -b && vite build",
"generate-routes": "tsr generate",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky",
"preview": "vite preview"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,md,html}": [
"biome check --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-query-devtools": "^5.99.0",
"@tanstack/react-router": "^1.168.22",
"i18next": "^26.0.5",
"ky": "^2.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.3",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@biomejs/biome": "2.4.12",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@rolldown/plugin-babel": "^0.2.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/router-cli": "^1.166.33",
"@tanstack/router-plugin": "^1.167.22",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"tailwindcss": "^4.2.2",
"typescript": "~6.0.2",
"vite": "^8.0.4"
}
}