-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.03 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
{
"name": "react-modele",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"lint": "eslint ./src/** --no-error-on-unmatched-pattern",
"lint:fix": "eslint --fix ./src/** --no-error-on-unmatched-pattern",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist node_modules yarn.lock package-lock.json",
"save-deps": "node updateDeps.js"
},
"devDependencies": {
"@babel/core": "*",
"@babel/eslint-parser": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"babel-loader": "*",
"bundle-stats-webpack-plugin": "*",
"clean-webpack-plugin": "*",
"copy-webpack-plugin": "*",
"core-js": "3",
"cross-env": "*",
"css-loader": "*",
"css-minimizer-webpack-plugin": "*",
"cssnano": "*",
"dotenv-flow": "*",
"eslint": "^8.7.0",
"eslint-config-airbnb": "*",
"eslint-import-resolver-alias": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"file-loader": "^6.2.0",
"html-webpack-plugin": "*",
"mini-css-extract-plugin": "*",
"postcss": "*",
"postcss-loader": "*",
"postcss-preset-env": "*",
"prettier": "^2.5.1",
"resolve-url-loader": "*",
"sass": "*",
"sass-loader": "*",
"style-loader": "*",
"terser-webpack-plugin": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*",
"webpack-merge": "*"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.11",
"axios": "^1.3.4",
"emoji-picker-react": "^4.4.7",
"prop-types": "*",
"react": "*",
"react-dom": "*",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"wavefile": "^11.0.0"
}
}