forked from doczjs/docz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.1 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
{
"private": true,
"license": "MIT",
"author": {
"name": "Pedro Nauck",
"email": "[email protected]",
"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 lint",
"packages:build": "lerna run build --ignore docz-example-*",
"packages:test": "lerna run --parallel test",
"prerelease": "yarn run packages",
"release": "lerna publish --conventional-commits",
"release:beta": "yarn release --npm-tag=beta --preid=beta",
"release:canary": "yarn release --force-publish=\"*\" --canary --exact --npm-client npm",
"precommit": "lint-staged",
"commit": "git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx}": [
"yarn packages:fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "7.4.4",
"@commitlint/cli": "^7.6.0",
"@commitlint/config-conventional": "^7.6.0",
"@commitlint/config-lerna-scopes": "^7.6.0",
"@types/fs-extra": "^5.1.0",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.124",
"@types/node": "^12.0.0",
"@types/prettier": "^1.16.3",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"all-contributors-cli": "^6.4.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-react-app": "^9.0.0",
"commitizen": "^3.1.1",
"cross-env": "^5.2.0",
"husky": "^2.2.0",
"jest": "^24.8.0",
"lerna": "3.13.4",
"lint-staged": "^8.1.6",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"rollup": "^1.11.3",
"trash-cli": "^2.0.0",
"ts-jest": "^24.0.2",
"typescript": "3.3.4000"
},
"workspaces": [
"core/*",
"examples/*",
"other-packages/*"
]
}