-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "ak-webpack",
"version": "1.0.15",
"description": "一个极简的开箱即用的webpack封装",
"main": "src/index.js",
"scripts": {
"test": "akwp",
"watch": "webpack-dev-server --watch-poll --config ./src/config.js --mode development",
"re-watch": "rm -rf node_modules && rm -rf package-lock.json && npm i && npm run watch ",
"publish-npm": "npm config set registry http://registry.npmjs.org && npm publish && npm config set registry https://registry.npm.taobao.org"
},
"bin": {
"ak-webpack": "bin/index.js",
"akwp": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lusess123/ak-webpack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lusess123/ak-webpack/issues"
},
"homepage": "https://github.com/lusess123/ak-webpack#readme",
"dependencies": {
"compression-webpack-plugin": "^3.1.0",
"css-loader": "^2.1.1",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"iconv-lite": "^0.4.24",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"markdown-loader": "^5.1.0",
"mini-css-extract-plugin": "^0.7.0",
"raw-loader": "^3.1.0",
"script-loader": "^0.7.2",
"ts-import-plugin": "^1.6.1",
"ts-loader": "^6.0.1",
"typescript": "^3.4.5",
"url-loader": "^1.1.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-merge": "^4.2.1",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.2"
}
}