- Created Playwright configuration file to set up testing environment. - Added a new e2e test for user authentication in login.spec.ts. - Updated tsconfig.node.json to include playwright.config.ts. - Enhanced vite.config.ts to include API proxying for backend integration. - Added a placeholder for last run test results in .last-run.json.
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "rail-game-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc --noEmit && tsc --project tsconfig.node.json --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
|
|
"test:e2e": "playwright test"
|
|
},
|
|
"dependencies": {
|
|
"leaflet": "^1.9.4",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-leaflet": "^4.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.16.5",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/leaflet": "^1.9.13",
|
|
"@typescript-eslint/eslint-plugin": "^8.6.0",
|
|
"@typescript-eslint/parser": "^8.6.0",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"@playwright/test": "^1.48.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
"eslint-plugin-react": "^7.35.0",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"prettier": "^3.3.3",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^5.4.0"
|
|
}
|
|
}
|