-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "react-native-tailwind.macro-monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"version": "1.0.0",
"description": "",
"keywords": [],
"repository": "https://github.com/finkef/react-native-tailwind.macro",
"author": "Fabian Finke <[email protected]> (https://github.com/finkef)",
"license": "MIT",
"bugs": {
"url": "https://github.com/finkef/react-native-tailwind.macro/issues"
},
"homepage": "https://github.com/finkef/react-native-tailwind.macro#readme",
"scripts": {
"release": "yarn workspace react-native-tailwind.macro release"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "3.3.0",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn workspace react-native-tailwind.macro lint && yarn workspace react-native-tailwind.macro typescript"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-flowtype": "8.0.3",
"@typescript-eslint/eslint-plugin": "5.5.0",
"prettier": "2.5.1"
}
}