forked from luoxue-victor/workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.45 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
{
"name": "box",
"version": "1.0.9",
"private": true,
"description": "前端项目最佳实践集合",
"author": "jijiang",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "webpack-box dev",
"dev:dash": "webpack-dashboard -- webpack-box dev",
"build": "webpack-box build",
"dev:docker": "docker run -v \"$(PWD)\":/usr/src/webpack-box/ docker-webpack-box npm run dev",
"build:docker": "docker build -t docker-webpack-box .",
"info": "pk info",
"test": "jest --color --config jest.config.js",
"cr": "node tools/create-readme",
"cz": "npm run cr && npm run log && git add . && git cz",
"log": "conventional-changelog --config ./node_modules/vue-cli-plugin-commitlint/lib/log -i CHANGELOG.md -s -r 0"
},
"main": "index.js",
"devDependencies": {
"@babel/preset-typescript": "^7.7.7",
"@commitlint/config-conventional": "^8.2.0",
"@pkb/cli": "^1.2.10",
"@pkb/plugin-eslint": "^1.2.10",
"@pkb/plugin-react": "^1.2.13",
"@pkb/plugin-stylelint": "^1.2.10",
"@pkb/plugin-tslint": "^1.2.10",
"@pkb/webpack-box": "^1.2.13",
"@sentry/browser": "^5.11.0",
"babel-jest": "^24.9.0",
"commitizen": "^4.0.3",
"commitlint": "^8.2.0",
"conventional-changelog-cli": "^2.0.28",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-css-modules": "^2.1.0",
"lerna": "^3.15.0",
"lint-staged": "^9.5.0",
"react-test-renderer": "^16.12.0",
"vue-cli-plugin-commitlint": "^1.0.10"
},
"bugs": {
"url": "https://github.com/luoxue-victor/learn_webpack/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/vue-cli-plugin-commitlint/lib/cz"
}
},
"homepage": "https://github.com/luoxue-victor/learn_webpack#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "ISC",
"lint-staged": {
"*.{vue,htm,html,css,sss,less,scss}": [
"webpack-box stylelint",
"git add"
],
"*.{ts,tsx}": [
"webpack-box tslint",
"git add"
],
"*.{js,jsx}": [
"webpack-box eslint",
"git add"
],
"packages/**/*.{js,jsx}": [
"webpack-box eslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/luoxue-victor/learn_webpack.git"
},
"sideEffects": true,
"dependencies": {}
}