forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.04 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
{
"name": "rneui",
"displayName": "React Native Elements UI Toolkit",
"private": true,
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*",
"example",
"scripts/docgen"
]
},
"scripts": {
"build": "lerna run build",
"build:docs-api": "yarn workspace @rneui/doc-gen build",
"clean-build": "rm -rf packages/*/dist",
"clean-install": "rimraf node_modules && yarn",
"docs-build-api": "yarn workspace @rneui/doc-gen build",
"docs-build": "yarn docs-build-api && cd website && yarn run build",
"example:start": "yarn workspace react-native-elements-app start",
"format": "prettier --check ./packages",
"lint-staged": "lint-staged",
"lint": "eslint ./packages --ext .js,.jsx,.ts,.tsx",
"postinstall": "husky install",
"test": "lerna run test",
"test:update": "lerna run test -- -u",
"typescript": "tsc --noEmit --composite false"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-native": "^11.5.0",
"@types/jest": "^27.4.0",
"@types/react-native": "^0.66.17",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^27.5.1",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.3.1",
"jest-transform-stub": "^2.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"react": "18.1.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-test-renderer": "18.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
},
"author": "RNE Core Team",
"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"
},
"scopes": {
"base": "@rneui/base",
"themed": "@rneui/themed",
"website/docs": "Docs"
}
}
}