forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.98 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.98 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "rneui",
"displayName": "React Native Elements UI Toolkit",
"packageManager": "yarn@4.5.2",
"workspaces": {
"packages": [
"packages/*",
"example",
"scripts/docgen"
]
},
"resolutions": {
"form-data": "^4.0.4",
"lodash": "^4.17.21",
"node-gyp": "^10.0.0",
"parse-path": "^7.0.0",
"parse-url": "^8.1.0",
"semver@5.x": "^5.7.2",
"semver@6.x": "^6.3.1",
"semver@7.0.0 - 7.5.1": "^7.5.2",
"semver@7.3.2": "^7.5.2",
"tmp": "^0.2.3",
"tough-cookie": "^4.1.3",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"build": "yarn workspaces foreach -Ap --topological-dev run build",
"build:docs-api": "yarn workspace @rneui/doc-gen build",
"create-packages": "yarn run build && yarn workspaces foreach -Ap --include '@rneui/*' pack --out %s-%v.tgz",
"create-git-packages": "yarn run build && yarn workspaces foreach -Ap --include '@rneui/*' pack --out %s-%v-r$(git log $(git describe --tags --abbrev=0)..HEAD --oneline | wc -l)-$(git rev-parse --short HEAD).tgz",
"clean-build": "rimraf 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": "yarn workspaces foreach -Ap run test",
"test:update": "yarn workspaces foreach -Ap run test -u",
"typescript": "tsc --noEmit"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.26.9",
"@react-native/babel-preset": "^0.81.4",
"@react-native/eslint-config": "^0.81.4",
"@testing-library/react-native": "^13.2.0",
"@tsconfig/react-native": "^3.0.0",
"@types/babel__preset-env": "^7",
"@types/copyfiles": "^2",
"@types/react": "^19.1.0",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^29.6.3",
"copyfiles": "^2.4.1",
"eslint": "^8.19.0",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"prettier": "^2.8.8",
"react": "19.1.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-test-renderer": "19.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.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"
],
"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"
}
}
}