-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.67 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
85
86
87
88
89
90
{
"name": "webpack-react-cli",
"version": "1.0.0",
"description": "",
"private": "true",
"scripts": {
"dev": "cross-env NODE_ENV=development REACT_APP_ENV=dev webpack serve --config webpack/webpack.dev.js",
"build:prod": "cross-env NODE_ENV=production REACT_APP_ENV=prod webpack --config webpack/webpack.prod.js",
"build:sit": "cross-env NODE_ENV=production REACT_APP_ENV=sit webpack --config webpack/webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"lint:src": "eslint src"
},
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.14",
"@reduxjs/toolkit": "^2.0.1",
"@toast-ui/react-calendar": "^2.1.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-redux": "^7.1.33",
"axios": "^1.6.5",
"core-js": "^3.35.0",
"echarts": "^5.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pdf": "^7.6.0",
"react-redux": "^9.0.4",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.21.1",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/react-resizable": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.6.0",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"prettier": "3.2.4",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.10.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 9",
"last 3 iOS versions"
]
}
}