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

This commit is contained in:
fred 2025-10-30 14:42:29 -07:00
parent ed6cf7e3d8
commit 15c6d0cad5
3 changed files with 17 additions and 18 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,8 @@
"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": {}
}
}