-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.46 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.46 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
79
80
81
82
83
84
85
86
87
{
"name": "react-webpack-cli",
"version": "1.0.0",
"description": "react webpack",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js --progress --color --display-error-details",
"build": "webpack --config webpack.config.prod.js --progress --color --display-error-details",
"lint:js": "eslint -c .eslintrc.prod.js --fix",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mega16/react-webpack-cli.git"
},
"keywords": [
"react",
"webpack"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "echo $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"npm run lint:js",
"git add"
]
},
"author": "mega16",
"license": "MIT",
"bugs": {
"url": "https://github.com/mega16/react-webpack-cli/issues"
},
"homepage": "https://github.com/mega16/react-webpack-cli#readme",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"autoprefixer": "^9.4.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-loader": "^2.1.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.4",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.1",
"react-test-renderer": "^16.8.2",
"react-testing-library": "^5.9.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"antd": "^3.13.4",
"react": "^16.8.2",
"react-dom": "^16.8.2"
}
}