-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.67 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.67 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
{
"name": "@minimal/material-kit-react",
"author": "minimals.cc",
"licence": "MIT",
"version": "1.6.0",
"private": false,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx ./src",
"lint:fix": "eslint --fix --ext .js,.jsx ./src",
"clear-all": "rm -rf build node_modules",
"re-start": "rm -rf build node_modules && yarn install && yarn start",
"re-build": "rm -rf build node_modules && yarn install && yarn build"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@faker-js/faker": "^7.6.0",
"@hookform/resolvers": "^2.9.11",
"@iconify/react": "^4.0.0",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.103",
"@mui/material": "^5.10.9",
"@reduxjs/toolkit": "^1.9.5",
"apexcharts": "^3.36.0",
"axios": "^1.2.6",
"change-case": "^4.1.2",
"date-fns": "^2.30.0",
"history": "^5.3.0",
"lodash": "^4.17.21",
"material-avatar": "^0.3.5",
"numeral": "^2.0.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.43.1",
"react-js-pagination": "^3.0.3",
"react-lottie": "^1.2.3",
"react-move": "^6.5.0",
"react-redux": "^8.0.5",
"react-router": "^6.8.0",
"react-router-dom": "^6.4.2",
"react-scripts": "^5.0.1",
"react-spring": "^9.7.1",
"react-star-ratings": "^2.3.0",
"simplebar-react": "^2.4.3",
"web-vitals": "^3.0.3",
"yup": "^1.0.0",
"zod": "^3.20.6"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@svgr/webpack": "^6.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1"
},
"overrides": {
"@svgr/webpack": "^6.5.0"
}
}