-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.41 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
{
"name": "react-template",
"version": "0.1.0",
"description": "A starter template for React",
"main": "main.js",
"scripts": {
"lint": "yarn lint:es && yarn lint:style",
"lint:es": "eslint --fix src components config tools --ext '.js,.jsx'",
"lint:style": "stylelint --fix \"{src,components}/**/*.scss\"",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack/webpack.config.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./config/webpack/webpack.config.js",
"analyzer": "yarn build --plugin webpack-bundle-analyzer/lib/BundleAnalyzerPlugin"
},
"author": "simbawu <[email protected]>",
"license": "MIT",
"devDependencies": {},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"autodll-webpack-plugin": "^0.4.2",
"axios": "^0.19.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^3.0.0",
"core-js": "3",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-booheefe": "1.2.9",
"eslint-plugin-react": "^7.12.3",
"happypack": "^5.0.0",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-px-to-viewport": "^1.1.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-logger": "^3.0.6",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-config-booheefe": "^1.0.5",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BooheeFE/react-template.git"
},
"keywords": [
"react"
],
"bugs": {
"url": "https://github.com/BooheeFE/react-template/issues"
}
}