-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.15 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
{
"name": "webpack-react-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rm -rf dist",
"build-dev": "webpack -d --mode development",
"build-prod": "webpack -p --mode production --env.NODE_ENV=production",
"start": "webpack-dev-server --open --hot --mode development",
"analyze": "webpack -p --mode production --env.analyze --env.NODE_ENV=production",
"storybook": "start-storybook"
},
"keywords": [],
"author": "Jakub Kraft",
"license": "ISC",
"browserslist": [
"last 2 versions",
"not dead",
"> 1% in CZ",
"not OperaMini all",
"not and_qq < 2",
"not baidu < 8"
],
"sideEffects": [
"*.css",
"*.less"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@storybook/react": "^5.2.8",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.1",
"css-loader": "^3.4.0",
"eslint": "^6.8.0",
"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",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-custom-properties": "^9.0.2",
"postcss-loader": "^3.0.0",
"style-loader": "^1.1.1",
"stylelint-webpack-plugin": "^1.1.2",
"terser-webpack-plugin": "^2.3.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"core-js": "^3.6.0",
"npm-check-updates": "^4.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18",
"stylelint": "^12.0.0"
}
}