forked from doczjs/docz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.89 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
97
98
99
{
"private": true,
"license": "MIT",
"author": {
"name": "Pedro Nauck",
"email": "pedronauck@gmail.com",
"url": "https://github.com/pedronauck"
},
"homepage": "https://docz.site",
"bugs": {
"url": "https://github.com/pedronauck/docz/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pedronauck/docz.git"
},
"scripts": {
"clean": "lerna clean",
"bs": "lerna bootstrap",
"packages": "run-s packages:*",
"packages:fix": "lerna run --parallel fix && echo",
"packages:lint": "lerna run --parallel tslint",
"packages:build": "lerna run build --ignore docz-example-*",
"prerelease": "yarn run packages",
"release": "lerna publish --conventional-commits",
"release:beta": "yarn release --npm-tag=beta --preid=beta",
"release:canary": "yarn release --canary --force-publish=\"*\" --canary --exact --yes --npm-client npm",
"precommit": "lint-staged",
"commit": "git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/config-lerna-scopes": "^7.2.1",
"@emotion/babel-preset-css-prop": "^10.0.5",
"@types/chokidar": "^1.7.5",
"@types/del": "^3.0.1",
"@types/express": "^4.16.0",
"@types/find-up": "^2.1.1",
"@types/fs-extra": "^5.0.4",
"@types/html-webpack-plugin": "^3.2.0",
"@types/lodash": "^4.14.119",
"@types/lodash.flatten": "^4.4.4",
"@types/lodash.flattendepth": "^4.7.4",
"@types/lodash.get": "^4.4.4",
"@types/node": "^10.12.17",
"@types/p-reduce": "^1.0.0",
"@types/prettier": "^1.15.2",
"@types/react": "^16.7.17",
"@types/react-copy-write": "^0.7.1",
"@types/react-dom": "^16.0.11",
"@types/react-router-dom": "^4.3.1",
"@types/resolve": "^0.0.8",
"@types/webpack": "^4.4.21",
"@types/webpack-chain": "^5.0.0",
"@types/webpack-dev-server": "^3.1.1",
"@types/ws": "^6.0.1",
"@types/yargs": "^12.0.1",
"all-contributors-cli": "^5.4.1",
"babel-plugin-lodash": "^3.3.4",
"commitizen": "^3.0.5",
"del": "^3.0.0",
"husky": "^1.3.0",
"lerna": "3.6.0",
"libundler": "^1.7.11",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"trash-cli": "^1.4.0",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"workspaces": [
"packages/*",
"examples/*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx}": [
"yarn packages:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn packages:lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}