Initial commit

This commit is contained in:
2025-07-10 21:59:56 -04:00
commit 4dec00d283
35 changed files with 10272 additions and 0 deletions

44
package.json Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "github-actions-radar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run server\" \"vite\"",
"server": "tsx server/index.ts",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"axios": "^1.6.0",
"date-fns": "^2.30.0",
"lucide-react": "^0.294.0",
"tailwindcss": "^3.3.6",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"chokidar": "^3.5.3"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vitest": "^1.0.4",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"tsx": "^4.6.2",
"concurrently": "^8.2.2"
}
}