build script for ci
Some checks failed
/ build (push) Failing after 8s

This commit is contained in:
fred 2025-10-30 14:39:02 -07:00
parent ed6cf7e3d8
commit e4a0161414
3 changed files with 37 additions and 14 deletions

View file

@ -6,17 +6,15 @@
"scripts": {
"dev": "vite --host 0.0.0.0 --port 80",
"production": "npx tsc -b && vite build",
"demo": "tsc -b && vite build",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
"ci": "npx tsc -b && vite build",
"lint": "eslint ."
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
"react-router-dom": "^7.6.3"
},
"devDependencies": {
"@types/node": "^24.2.0",
"@eslint/js": "^9.29.0",
"@types/react": "^19.1.8",
@ -28,7 +26,24 @@
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^7.0.0"
},
"devDependencies": {}
"ciDependencies": {
"@types/node": "^24.2.0",
"@eslint/js": "^9.29.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^7.0.0"
}
}