-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.79 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
{
"private": true,
"dependencies": {
"bootstrap": "^4.5.0",
"jquery": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "^7.7.6",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.8.1",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.2",
"terser-webpack-plugin": "^2.3.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
},
"scripts": {
"dev": "webpack --mode=development",
"prod": "webpack --mode=production",
"watch": "webpack --mode=development --watch"
},
"browserslist": {
"defaults": [
"last 2 versions",
"Safari >= 10",
"iOS >= 10",
"not ie <= 10",
"> 1%"
],
"evergreen": [
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Firefox versions",
"last 2 FirefoxAndroid versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions",
"last 2 Opera versions"
]
}
}