-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.24 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
{
"author": "Mariusz Kaczkowski",
"license": "MIT",
"name": "modern-react-starter",
"version": "1.4.0",
"scripts": {
"start": "webpack-dev-server --config config/webpack.config.babel.js",
"build": "webpack --config config/webpack.config.prod.babel.js",
"test": "jest --config=jest.config.js",
"test:dom": "jest --env=jsdom",
"test:coverage": "jest --coverage",
"serve": "serve dist",
"docz:dev": "docz dev",
"docz:build": "docz build"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.10",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0-beta.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"docz": "^0.11.2",
"docz-plugin-css": "^0.11.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^2.0.0",
"flow-bin": "^0.81.0",
"flow-typed": "^2.5.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.4.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.0.7",
"prettier": "^1.11.1",
"react-dev-utils": "^5.0.1",
"serve": "^10.0.0",
"style-loader": "^0.23.0",
"stylelint": "^9.5.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.5.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.1"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"not op_mini all",
"not ie > 0"
]
}
}