-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
124 lines (124 loc) · 3.68 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
{
"name": "webpack4-cli",
"version": "2.3.0",
"description": "webpack-cli for multiPage application. if this helped, please give the star.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "node ./config/scpt/before",
"build": "webpack --color --progress --mode=production",
"postbuild": "node ./config/scpt/after",
"predev": "node ./config/scpt/before",
"dev": "webpack-dev-server --color --progress --watch --hot-only --mode=development",
"postdev": "node ./config/scpt/after",
"min-img": "npx gulp minifyImg",
"analyze": "npx webpack --profile --json > stats.json && npx webpack-bundle-analyzer stats.json ./dist",
"dll": "npx webpack --mode=development --color --config ./config/dll/index.js"
},
"keywords": [
"webpack",
"multiPage",
"cli",
"multi-page",
"vue",
"react"
],
"author": "pomelott",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.10.1",
"@types/react": "^15.6.28",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.0.0",
"autoprefixer": "^8.4.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^6.0.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-vue": "^6.2.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"glob": "^7.1.2",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-imagemin": "^7.1.0",
"gulp-smushit": "^1.2.0",
"gulp-tinypng-nokey": "^1.1.0",
"html-inline-entry-chunk-plugin": "^1.0.3",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"less": "^3.0.2",
"less-loader": "^4.1.0",
"lodash": "^4.17.15",
"node-sass": "~4.9.1",
"pomelo-toolbox": "^1.0.32",
"postcss-loader": "^2.1.4",
"pug": "^2.0.4",
"pug-html-loader": "^1.1.5",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"react-hot-loader": "^4.13.0",
"sass-loader": "^8.0.2",
"style-loader": "^0.21.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^4.1.0",
"vinyl": "^2.2.0",
"vue-eslint-parser": "^7.1.0",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@babel/runtime": "^7.9.6",
"jquery": "^3.5.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pomelott/webpack4-cli.git"
},
"bugs": {
"url": "https://github.com/pomelott/webpack4-cli/issues"
},
"homepage": "https://github.com/pomelott/webpack4-cli#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 ie version"
]
},
"engines": {
"node": "10.13.0",
"npm": "6.4.1"
}
}