factuges_2025/apps/web/package.json

30 lines
731 B
JSON
Raw Normal View History

2025-04-27 20:47:47 +00:00
{
"name": "web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
2025-05-01 11:52:39 +00:00
"dev": "vite --clearScreen false",
"build": "tsc && vite build",
2025-04-27 20:47:47 +00:00
"preview": "vite preview",
2025-05-01 11:52:39 +00:00
"lint": "eslint \"src/**/*.ts\"",
"clean": "rm -rf dist && rm -rf node_modules"
2025-04-27 20:47:47 +00:00
},
"dependencies": {
"@repo/ui": "workspace:*",
"react": "^19.1.0",
"react-dom": "^19.1.0"
2025-04-27 20:47:47 +00:00
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/react": "^19.1.2",
2025-05-01 11:52:39 +00:00
"@types/react-dom": "^19.1.3",
2025-04-27 20:47:47 +00:00
"@vitejs/plugin-react": "^4.4.1",
2025-05-01 11:52:39 +00:00
"globals": "^16.0.0",
2025-05-02 11:22:47 +00:00
"typescript": "^5.8.3",
2025-05-01 11:52:39 +00:00
"typescript-eslint": "^8.31.1",
"vite": "^6.3.4"
2025-04-27 20:47:47 +00:00
}
}