-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.24 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.24 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
{
"private": "true",
"scripts": {
"start": "SERVE=true webpack serve",
"watch": "webpack --watch",
"build": "NODE_ENV=production webpack",
"build-dev": "webpack",
"clean": "rm -rf dist",
"lint": "eslint ./src/index.js ./src/components/**/*.js",
"lint:fix": "eslint --fix ./src/index.js ./src/components/**/*.js",
"owl-update": "node owl-update-script.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@testing-library/react": "^13.4.0",
"babel-jest": "^29.3.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"eslint-plugin-react": "^7.24.0",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^5.3.2",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.3.5",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.6.0",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.9.0",
"xml-loader": "^1.2.1"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.9.7",
"@loadable/component": "^5.15.2",
"@mui/icons-material": "^5.4.4",
"@mui/lab": "^5.0.0-alpha.72",
"@mui/material": "^5.4.4",
"@mui/x-data-grid": "^5.16.0",
"axios": "^0.27.2",
"core-js": "^3.22.5",
"dotenv-webpack": "^8.0.0",
"elasticlunr": "^0.9.5",
"immer": "^9.0.19",
"lerp": "^1.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-ga4": "^2.1.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-hook-form": "^7.34.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.3.0",
"react-timeago": "^7.1.0",
"react-toastify": "^9.1.1",
"react-window": "^1.8.8",
"regenerator-runtime": "^0.13.9",
"remark-gfm": "^3.0.1",
"sass": "^1.35.1",
"xml2js": "^0.4.23",
"yup": "^0.32.11"
}
}