-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "webpack4.0-react",
"version": "1.0.0",
"description": "study for webpack4.0&react",
"main": "index.js",
"scripts": {
"start": "yarn run dev",
"build": "node build/build.js",
"dev": "webpack-dev-server --inline --progress --compress --config build/webpack.dev.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jingchenxu/webpack4.0-react.git"
},
"keywords": [
"webpack4.0",
"react"
],
"author": "jingchenxu2015@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jingchenxu/webpack4.0-react/issues"
},
"homepage": "https://github.com/jingchenxu/webpack4.0-react#readme",
"dependencies": {
"antd-mobile": "^2.3.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"ora": "^3.4.0",
"portfinder": "^1.0.21",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"typescript": "^3.4.5",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
}
}