forked from doczjs/docz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.56 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
{
"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/doczjs/docz/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/doczjs/docz.git"
},
"scripts": {
"clean": "lerna clean",
"bs": "lerna bootstrap",
"dev": "cd dev-env/basic && yarn && yarn dev",
"examples:lint": "eslint examples --ext js,mdx,ts,tsx",
"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 test --stream --ignore docz-example-*",
"prerelease": "yarn run packages",
"release": "lerna publish --conventional-commits",
"release:next": "yarn run packages && lerna publish --conventional-commits --conventional-prerelease --dist-tag=next --exact",
"promote:next": "lerna publish --conventional-commits --conventional-graduate",
"release:beta": "yarn release --dist-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",
"git add"
]
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/config-lerna-scopes": "^8.2.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"@types/prettier": "^1.16.4",
"all-contributors-cli": "^6.8.0",
"babel-eslint": "^10.0.3",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-react-app": "^9.1.2",
"commitizen": "^3.1.2",
"cross-env": "^5.2.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lerna": "3.15.0",
"lint-staged": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rollup": "^1.17.0",
"trash-cli": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "3.5.3"
},
"workspaces": {
"packages": [
"core/*",
"other-packages/*"
],
"nohoist": [
"dev-env/*",
"examples/*"
]
}
}