Files
TaskPool/web/package.json
T
admin 6ffa2ecdfb
Build and Deploy / build (push) Failing after 32s
Build and Deploy / docker (push) Has been skipped
Build and Deploy / deploy (push) Has been skipped
feat: add Monaco editor, API error handling, and CI/CD
- Monaco Editor: script editor with syntax highlighting
- API: error handling with ApiError class and token management
- CI/CD: Gitea Actions workflow for build, Docker, and deploy
- Docker: multi-stage build with nginx
- nginx.conf: SPA fallback and API proxy
2026-07-20 17:00:21 +00:00

36 lines
906 B
JSON

{
"name": "taskpool-web",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-query": "^5.80.0",
"@tanstack/react-router": "^1.120.0",
"@tanstack/react-table": "^8.21.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"framer-motion": "^11.15.0",
"lucide-react": "^0.525.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "^2.15.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^6.0.3",
"autoprefixer": "^10.4.0",
"postcss": "^8.5.0",
"tailwindcss": "^4.1.0",
"typescript": "^5.9.0",
"vite": "^8.1.5"
}
}