-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.61 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
{
"name": "webpack-template",
"version": "1.0.0",
"description": "This is a webpack config template for webpack learning.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development webpack serve --config build/webpack.dev.conf.js",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.conf.js",
"dll": "cross-env NODE_ENV=production webpack --config build/webpack.dll.conf.js",
"build:stats": "cross-env NODE_ENV=production webpack --config build/webpack.prod.conf.js --json > stats.json",
"prod": "webpack --config webpack.config.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Clloz/webpack-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Clloz/webpack-template/issues"
},
"homepage": "https://github.com/Clloz/webpack-template#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@webpack-cli/serve": "^1.1.0",
"add-asset-html-webpack-plugin": "^3.1.3",
"autoprefixer": "^10.0.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"bundlesize": "^0.18.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"cssnano": "^4.1.10",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob-all": "^3.2.1",
"hard-source-webpack-plugin": "^0.13.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0-alpha.14",
"html-webpack-tags-plugin": "^2.0.17",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"mini-css-extract-plugin": "^1.3.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.0",
"prettier": "^2.1.2",
"purgecss-webpack-plugin": "^3.0.0",
"px2rem-loader": "^0.1.9",
"raw-loader": "^4.0.2",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"speed-measure-webpack-plugin": "^1.3.3",
"style-loader": "^2.0.0",
"style-resources-loader": "^1.4.1",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"terser-webpack-plugin": "^5.0.3",
"thread-loader": "^3.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.2.0",
"webpack-dashboard": "^3.2.1",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"dependencies": {
"core-js": "^3.7.0",
"lib-flexible": "^0.3.2",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"vue": "^2.6.12",
"vue-router": "^3.4.9"
}
}