-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.77 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
{
"private": true,
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack.development.js",
"start-static": "http-server dist --port 3003 -c-1 --proxy http://localhost:3003?",
"build": "NODE_ENV=production webpack --config webpack.production.js",
"format": "prettier --check 'src/**/*.js'",
"eslint": "eslint 'src/**/*.js'",
"stylelint": "stylelint 'src/**/*.js'",
"depcheck": "depcheck",
"deduplicate": "yarn-deduplicate",
"analyze-bundle": "webpack-bundle-analyzer dist/stats.json"
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.5",
"axios": "^0.19.2",
"change-case": "^4.1.1",
"core-js": "^3.6.5",
"debug": "^4.1.1",
"delay": "^4.3.0",
"draft-js": "^0.11.5",
"immutable": "~3.7.4",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"depcheck": "^0.9.2",
"dotenv": "8.2.0",
"error-overlay-webpack-plugin": "^0.4.1",
"eslint": "^6.6.0",
"eslint-import-resolver-babel-module": "5.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"file-loader": "^6.0.0",
"history": "^4.10.1",
"html-webpack-plugin": "^4.2.0",
"http-server": "^0.12.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"react-dev-utils": "^10.2.1",
"react-router-dom": "^5.1.2",
"style-ext-html-webpack-plugin": "^4.1.2",
"style-loader": "^1.2.0",
"styled-components": "^5.1.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"terser-webpack-plugin": "^2.3.6",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "3.10.3",
"yarn-deduplicate": "^2.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}