This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathpackage.json
93 lines (93 loc) · 2.64 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
{
"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.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/config-lerna-scopes": "^7.5.1",
"@emotion/babel-preset-css-prop": "^10.0.7",
"@types/find-up": "^2.1.1",
"@types/fs-extra": "^5.0.5",
"@types/jest": "^24.0.3",
"@types/lodash": "^4.14.120",
"@types/lodash.flatten": "^4.4.4",
"@types/lodash.flattendepth": "^4.7.4",
"@types/lodash.get": "^4.4.4",
"@types/node": "^11.9.3",
"@types/prettier": "^1.16.0",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-router-dom": "^4.3.1",
"all-contributors-cli": "^6.1.1",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-react-app": "^7.0.1",
"commitizen": "^3.0.5",
"cross-env": "^5.2.0",
"docz-rollup": "0.13.3",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lerna": "3.11.1",
"lint-staged": "^8.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rollup": "^1.1.2",
"trash-cli": "^1.4.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
},
"workspaces": [
"core/*",
"examples/*",
"other-packages/*"
],
"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"
}
}
}