-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.25 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.25 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
{
"name": "customized-webpack",
"version": "0.0.2",
"description": "customized module bundler",
"license": "BSD",
"keywords": [
"customized-webpack",
"webpack",
"react",
"typeScript"
],
"bin": {
"customized-webpack": "./bin/scripts.js"
},
"repository": {
"type": "git",
"url": "https://github.com/robint-liu/customized-webpack"
},
"scripts": {
"clean": "rm -rf dist",
"start": "node ./bin/scripts start",
"build": "node ./bin/scripts build"
},
"devDependencies": {
"prettier": "2.0.4"
},
"dependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/polyfill": "7.8.7",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"autoprefixer": "9.7.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-import": "1.13.0",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.5.2",
"eslint": "6.8.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-lodash": "7.1.0",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"fast-sass-loader": "1.5.0",
"file-loader": "6.0.0",
"fork-ts-checker-webpack-plugin": "4.1.3",
"happypack": "5.0.1",
"html-webpack-plugin": "4.2.0",
"less": "3.11.1",
"less-loader": "5.0.0",
"lodash": "4.17.15",
"mini-css-extract-plugin": "0.9.0",
"open-browser-webpack-plugin": "0.0.5",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-flexbugs-fixes": "4.2.0",
"postcss-loader": "3.0.0",
"postcss-nested": "4.2.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hot-loader": "4.12.20",
"sass": "1.26.3",
"style-loader": "1.1.4",
"terser-webpack-plugin": "2.3.5",
"ts-loader": "7.0.1",
"typescript": "3.8.3",
"url-loader": "4.1.0",
"webpack": "4.42.1",
"webpack-bundle-analyzer": "3.7.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2",
"whatwg-fetch": "3.0.0"
}
}