-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.82 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-env",
"version": "1.0.0",
"description": "A template for initial react project with webpack",
"repository": {
"type": "git",
"url": "https://github.com/leeword/react-env.git"
},
"scripts": {
"start": "npm run dev",
"postinstall": "npm run build:dll",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.js --color",
"dev:proxy": "cross-env USE_PROXY=1 npm run dev",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js --progress",
"build:dll": "webpack --config build/webpack.dll.js",
"build:report": "cross-env SHOW_REPORT=1 npm run build",
"prettier": "prettier --write *.{js,json,md}",
"lint": "eslint --max-warnings 10 src build",
"lint:fix": "eslint --fix src build",
"prebuild": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"@(src|build)/**/*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"keywords": [
"webpack4",
"react",
"redux",
"react-router"
],
"author": {
"name": "Frank Fu",
"email": "[email protected]"
},
"engines": {
"node": ">= 10.0.0"
},
"license": "MIT",
"sideEffects": [
"dist/*",
"*.scss",
"*.css",
"src/sw-register.js"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^8.2.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob": "^7.1.4",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.5",
"image-webpack-loader": "^5.0.0",
"inline-manifest-webpack-plugin": "^4.0.2",
"lint-staged": "^10.5.4",
"live-server": "^1.2.1",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prettier": "^2.2.1",
"purgecss-webpack-plugin": "^1.5.0",
"purify-css": "^1.2.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"thread-loader": "^2.1.3",
"url-loader": "^2.0.0",
"webpack": "^4.35.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2",
"webpack-fix-style-only-entries": "^0.3.0",
"webpack-merge": "^4.2.1",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"@hot-loader/react-dom": "^16.8.3",
"antd": "^4.13.0",
"core-js": "2",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-hot-loader": "^4.11.1",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
}
}