forked from luoxue-victor/workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.69 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
{
"name": "webpack-box",
"version": "1.0.1",
"description": "webpack打包器",
"main": "index.js",
"bin": {
"webpack-box": "bin/webpack-box.js"
},
"scripts": {
"log": "conventional-changelog --config ./node_modules/vue-cli-plugin-commitlint/lib/log -i CHANGELOG.md -s -r 0",
"cz": "npm run log && git add . && git cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luoxue-victor/learn_webpack.git"
},
"author": "jijiang",
"license": "ISC",
"bugs": {
"url": "https://github.com/luoxue-victor/learn_webpack/issues"
},
"sideEffects": true,
"homepage": "https://github.com/luoxue-victor/learn_webpack#readme",
"dependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.6.0",
"@commitlint/config-conventional": "^8.2.0",
"acorn": "^7.1.0",
"autoprefixer": "^9.7.2",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-imports": "^2.0.0",
"browser-refresh": "^1.7.3",
"cache-loader": "^4.1.0",
"commitizen": "^4.0.3",
"commitlint": "^8.2.0",
"compression-webpack-plugin": "^3.0.0",
"conventional-changelog-cli": "^2.0.28",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^3.0.2",
"fork-ts-checker-notifier-webpack-plugin": "^1.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"ora": "^4.0.3",
"postcss-loader": "^3.0.0",
"postcss-px-to-viewport": "^1.1.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"thread-loader": "^2.1.3",
"typescript": "^3.7.2",
"vue-cli-plugin-commitlint": "^1.0.4",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-chain": "^6.0.0",
"webpack-cli": "^3.3.10",
"webpack-common-shake": "^1.1.3",
"webpack-dashboard": "^3.2.0",
"webpack-deep-scope-plugin": "^1.6.2",
"webpack-dev-server": "^3.9.0"
},
"devDependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/vue-cli-plugin-commitlint/lib/cz"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}