-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 KB
/
package.json
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
{
"name": "saas-erp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.19.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.115",
"@mui/material": "^5.11.6",
"@mui/x-data-grid": "^5.17.21",
"@mui/x-date-pickers": "^5.0.16",
"@reduxjs/toolkit": "^1.9.1",
"@rtk-query/codegen-openapi": "^1.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/react-csv": "^1.1.3",
"babel-loader": "^9.1.2",
"buffer": "^6.0.3",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"formik": "^2.2.9",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-date-range": "^1.4.0",
"react-dom": "^18.2.0",
"react-error-overlay": "6.0.11",
"react-hook-form": "^7.39.7",
"react-redux": "^8.0.5",
"react-router-dom": "^6.7.0",
"react-toastify": "^9.1.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"web-vitals": "^3.0.4",
"webpack": "^5.75.0",
"webpack-bundle-tracker": "^1.7.0",
"webpack-cli": "^5.0.1",
"yup": "^0.32.11"
},
"scripts": {
"start": "webpack watch --config frontend/webpack/webpack.config.js",
"build": "webpack --config frontend/webpack/webpack.config.js",
"generate_api": "rtk-query-codegen-openapi frontend/openapi-config.ts",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"react-error-overlay": "6.0.11"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"core-js": "^3.26.1",
"css-loader": "^6.7.2",
"style-loader": "^3.3.1"
}
}