package.json
988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "xly-erp-frontend",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --max-warnings 0",
"e2e": "playwright test"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"@reduxjs/toolkit": "^2.2.8",
"react-redux": "^9.1.2",
"antd": "^5.21.4",
"axios": "^1.7.7",
"dayjs": "^1.11.13"
},
"devDependencies": {
"vite": "^5.4.8",
"@vitejs/plugin-react": "^4.3.2",
"typescript": "^5.6.2",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"vitest": "^2.1.2",
"@testing-library/react": "^16.0.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"jsdom": "^25.0.1",
"msw": "^2.4.9",
"@playwright/test": "^1.48.0"
}
}