-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "front",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "22.x",
"npm": "10.x"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"start": "serve -s dist -p $PORT",
"lint": "tsc -b && vite build && eslint .",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"preview": "vite preview",
"prepare": "husky",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/inter": "^5.2.8",
"@fontsource/poppins": "^5.2.7",
"@mui/material": "^7.3.2",
"@reduxjs/toolkit": "^2.9.0",
"@types/node": "^24.6.2",
"@types/react-redux": "^7.1.34",
"chart.js": "^4.5.1",
"i18next": "^25.5.2",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.553.0",
"react": "^19.1.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.1.1",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.63.0",
"react-i18next": "^16.0.0",
"react-icons": "^5.5.0",
"react-intersection-observer": "^10.0.0",
"react-markdown": "^10.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.2",
"react-toastify": "^11.0.5",
"serve": "^14.2.5",
"styled-components": "^6.1.19"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^30.0.0",
"@types/js-cookie": "^3.0.6",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-react": "^5.0.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.1",
"path": "^0.12.7",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"typescript": "~5.8.3",
"typescript-eslint": "^8.44.0",
"vite": "npm:rolldown-vite@7.1.12"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"overrides": {
"vite": "npm:rolldown-vite@7.1.12"
}
}