-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.65 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.65 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
{
"version": "2.5.0",
"name": "multitwitch",
"browser": {
"[module-name]": false
},
"scripts": {
"clean": "rm -R dist/*",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"start": "webpack serve --history-api-fallback --mode development",
"lint:fix": "npx eslint ./src/**/*.{js,jsx} --fix",
"prettier:check": "npx prettier --check src/**/*.{js,jsx}",
"update": "npx npm-check --skip-unused"
},
"dependencies": {
"@fontsource/ubuntu": "^4.5.11",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"axios": "^1.1.3",
"core-js": "^3.25.5",
"dayjs": "^1.11.6",
"i18next": "^22.0.2",
"i18next-browser-languagedetector": "^6.1.8",
"i18next-http-backend": "^1.4.4",
"lodash.compact": "^3.0.1",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.omit": "^4.5.0",
"lodash.orderby": "^4.6.0",
"lodash.reject": "^4.6.0",
"lodash.throttle": "^4.1.1",
"lodash.transform": "^4.6.0",
"lodash.uniqby": "^4.7.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-helmet": "^6.1.0",
"react-i18next": "^12.0.0",
"react-new-window": "file:packages/react-new-window",
"react-router-dom": "^6.4.2",
"react-select": "^5.5.4",
"react-toastify": "^9.0.8",
"react-tooltip": "^4.4.2",
"react-transition-group": "^4.4.5",
"use-interval": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"babel-loader": "^8.2.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.7.1",
"process": "^0.11.10",
"react-refresh": "^0.11.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4"
}
}