-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.16 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "swegon-recruitment-codetest-frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.5",
"chart.js": "^4.4.1",
"classnames": "^2.5.1",
"date-fns": "^3.0.6",
"jsdom": "^23.0.0",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-icons": "^5.0.1",
"react-router-dom": "^6.21.0",
"react-toastify": "^11.0",
"styled-components": "^6.1.8",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-checker": "^0.11.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@typescript-eslint/utils": "8.46.0",
"eslint": "^9.39.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.0.0",
"typescript-eslint": "^8.52.0"
}
}