forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.5 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
{
"private": true,
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*",
"example"
]
},
"scripts": {
"lint": "eslint ./packages --ext .js,.jsx,.ts,.tsx",
"typescript": "tsc --noEmit --composite false",
"format": "prettier --check ./packages",
"test": "lerna run test",
"build": "lerna run build",
"clean-install": "rimraf node_modules && yarn",
"example": "yarn --cwd example",
"docs-build": "cd website && yarn run build",
"docs-build-api": "cd website && yarn run build-api",
"postinstall": "husky install",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/react-native": "^7.0.2",
"@types/jest": "^27.4.0",
"@types/react-native": "*",
"babel-jest": "^27.4.6",
"codecov": "^3.8.3",
"eslint": "^7.9.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lerna": "^4.0.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-native": "^0.64.0",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"author": "Nader Dabit & Monte Thakkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-elements/react-native-elements/issues"
},
"homepage": "https://reactnativeelements.com/",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-elements",
"logo": "https://opencollective.com/react-native-elements/logo.txt"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"tsc --noEmit --composite false"
],
"packages/**/*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"jest --bail --findRelatedTests"
],
"**/*.md": [
"prettier --single-quote --trailing-comma=es5 --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-elements/react-native-elements.git"
},
"changelog": {
"nextVersion": "TODO version name",
"cacheDir": ".changelog",
"labels": {
"PR: Breaking Change :boom:": ":boom: Breaking Change",
"PR: New Feature :tada:": ":rocket: New Feature",
"PR: Docs :memo:": ":memo: Documentation",
"PR: Bug Fix :bug:": ":bug: Bug Fix",
"PR: Deprecation: :loudspeaker:": ":loudspeaker: Deprecation"
}
},
"dependencies": {
"react-native-table-component": "^1.2.2"
}
}