2025-10-24 12:02:17 +03:00
|
|
|
{
|
2025-11-14 19:06:36 +03:00
|
|
|
"name": "ticket-form-intake-frontend",
|
2025-10-24 12:02:17 +03:00
|
|
|
"private": true,
|
|
|
|
|
"version": "1.0.0",
|
2025-11-14 19:06:36 +03:00
|
|
|
"description": "Ticket Form Intake Platform - Frontend",
|
2025-10-24 12:02:17 +03:00
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
2025-12-29 01:19:19 +03:00
|
|
|
"build": "vite build",
|
2025-10-24 12:02:17 +03:00
|
|
|
"preview": "vite preview",
|
|
|
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
2025-10-24 16:19:58 +03:00
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
|
"start": "serve -s dist -l 3000"
|
2025-10-24 12:02:17 +03:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"react": "^18.3.1",
|
|
|
|
|
"react-dom": "^18.3.1",
|
|
|
|
|
"react-router-dom": "^6.26.2",
|
|
|
|
|
"antd": "^5.21.6",
|
|
|
|
|
"@ant-design/icons": "^5.5.1",
|
|
|
|
|
"axios": "^1.7.7",
|
|
|
|
|
"@tanstack/react-query": "^5.59.16",
|
|
|
|
|
"zustand": "^5.0.1",
|
|
|
|
|
"dayjs": "^1.11.13",
|
|
|
|
|
"imask": "^7.6.1",
|
|
|
|
|
"react-dropzone": "^14.3.5",
|
2025-10-24 16:19:58 +03:00
|
|
|
"socket.io-client": "^4.8.1",
|
2025-10-27 08:33:16 +03:00
|
|
|
"serve": "^14.2.1",
|
|
|
|
|
"jspdf": "^2.5.2",
|
|
|
|
|
"browser-image-compression": "^2.0.2"
|
2025-10-24 12:02:17 +03:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/react": "^18.3.11",
|
|
|
|
|
"@types/react-dom": "^18.3.1",
|
|
|
|
|
"@vitejs/plugin-react": "^4.3.3",
|
|
|
|
|
"typescript": "^5.6.3",
|
|
|
|
|
"vite": "^5.4.10",
|
|
|
|
|
"eslint": "^9.13.0",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
|
|
|
"@typescript-eslint/parser": "^8.11.0",
|
|
|
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
|
|
|
"eslint-plugin-react-refresh": "^0.4.13"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|