forked from doczjs/docz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.27 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
100
101
102
{
"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/doczjs/docz/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/doczjs/docz.git"
},
"scripts": {
"clean": "lerna clean",
"bs": "lerna bootstrap",
"dev": "yarn packages:build && lerna run dev --parallel --scope={dev-env-*,docz,docz-core,gatsby-theme-docz,rehype-docz,remark-docz}",
"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-*,dev-env-*}",
"packages:test": "lerna run test --stream --ignore={docz-example-*,dev-env-*}",
"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/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/config-lerna-scopes": "^8.2.0",
"@mdx-js/mdx": "^1.1.0",
"@types/cross-spawn": "^6.0.0",
"@types/find-up": "^4.0.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"@types/pascal-case": "^1.1.2",
"@types/prettier": "^1.16.4",
"@types/reach__router": "^1.2.4",
"@types/react-dom": "^16.8.4",
"@types/react": "^16.8.23",
"@types/resolve": "^0.0.8",
"@types/shelljs": "^0.8.5",
"@types/signale": "^1.2.1",
"@types/wait-on": "^3.2.0",
"all-contributors-cli": "^6.8.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.8.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-react-app": "^9.1.2",
"commitizen": "^3.1.2",
"cross-env": "^5.2.1",
"docz-rollup": "^2.1.0",
"eslint-config-docz-js": "^2.1.0",
"eslint-config-docz-ts": "^2.1.0",
"eslint-plugin-react": "^7.16.0",
"eslint": "^6.5.1",
"husky": "^3.0.0",
"jest": "^24.9.0",
"lerna": "^3.15.0",
"lint-staged": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"remark-docz": "^2.1.0",
"rollup": "^1.17.0",
"trash-cli": "^3.0.0",
"trash": "^6.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"workspaces": {
"packages": [
"core/*",
"other-packages/*",
"dev-env/*"
],
"nohoist": [
"examples/*"
]
}
}