-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "root",
"private": true,
"author": "fidisys",
"description": "Custom reuseable components for react native ",
"repository": {
"type": "git",
"url": "https://github.com/fidisys/react-native-components.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"prettier": "prettier --config ./.prettierrc --check \"packages/**/*{.js,.json}\"",
"prettier:fix": "npm run prettier -- --write",
"local:publish": "lerna exec -- npm publish --registry http://localhost:4873",
"local:unpublish": "lerna exec -- npm unpublish -f --registry http://localhost:4873"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn prettier:fix",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"devDependencies": {
"all-contributors-cli": "^6.8.1",
"commitizen": "^4.0.3",
"husky": "^3.0.9",
"lerna": "^3.17.0",
"lerna-changelog": "^0.8.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"prop-types": "^15.7.2",
"react": "16.9.0",
"react-native": "0.61.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}