-
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.72 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.72 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": "webpack_practice",
"version": "1.0.0",
"description": "此仓库是webpack4.0的自我学习实践 ## 目的 实践webpack,尝试用webpack4.0构建一套适用于自己的环境。",
"private": true,
"scripts": {
"dev": "NODE_ENV=development webpack --profile --progress --colors --open 'Google Chrome' --config webpack.dev.js",
"hrm": "NODE_ENV=development webpack-dev-server --profile --progress --colors --open 'Google Chrome' --config webpack.dev.js",
"build": "NODE_ENV=production webpack --profile --progress --colors --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koory1st/webpack_practice.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/koory1st/webpack_practice/issues"
},
"homepage": "https://github.com/koory1st/webpack_practice#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"babel-loader": "^8.0.0-beta.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"glob": "^7.1.2",
"html-url-loader": "^1.0.5",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.3.1",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"log": "^1.4.0",
"postcss-load-config": "^1.2.0",
"postcss-loader": "^2.1.5",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"style-loader": "^0.21.0",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}