-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.44 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "rma",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^4.1.3",
"@redux-devtools/extension": "^3.3.0",
"@reduxjs/toolkit": "^2.0.1",
"@tanstack/react-table": "^8.21.2",
"axios": "^1.6.3",
"bootstrap": "^5.3.3",
"classnames": "^2.4.0",
"husky": "^9.1.7",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.6.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-datepicker": "^8.2.1",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.49.2",
"react-input-mask": "^2.0.4",
"react-phone-input-2": "^2.15.1",
"react-redux": "^9.0.4",
"react-responsive": "^9.0.2",
"react-router": "^7.4.0",
"react-router-dom": "^7.4.0",
"react-toastify": "^11.0.5",
"react-widgets": "^5.8.4",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reselect": "^5.0.1",
"sass": "^1.69.5",
"yup": "^1.6.1"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write \"./**/*.{ts,tsx,js}\"",
"lint": "eslint . --ext .ts,.tsx --fix || exit 0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
},
"lint-staged": {
"src/*.{ts,tsx}": [
"npm format",
"npm lint"
]
},
"overrides": {
"react-error-overlay": "6.0.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.3",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.6.2",
"@types/node": "^22.13.13",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.2.18",
"@types/react-helmet": "^6.1.11",
"@types/react-redux": "^7.1.33",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.4",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.5",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.8.2",
"vite": "^6.2.3",
"vite-plugin-checker": "^0.9.1",
"vite-plugin-pwa": "^0.21.2",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.1.4"
}
}