-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "ft-sdk-react-native",
"description": "CloudCare React Native SDK workspace",
"keywords": [
"cloudcare",
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GuanceCloud/datakit-react-native.git"
},
"author": "Brandon <brandonfaustine@gmail.com> (https://github.com/Br4ndonZhang)",
"license": "Apache-2.0",
"homepage": "https://github.com/GuanceCloud/datakit-react-native.git#readme",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"example",
"example-new-architecture"
]
},
"scripts": {
"prepare": "lerna run prepare",
"bootstrap": "yarn install && yarn pods",
"update-version": "./update-version.sh",
"check-version": "node scripts/check-version.js",
"pods": "cd example && pod-install --quiet",
"lint": "yarn workspace @cloudcare/react-native-mobile lint && yarn workspace @cloudcare/react-native-session-replay lint",
"typescript": "yarn workspace @cloudcare/react-native-mobile typescript && yarn workspace @cloudcare/react-native-session-replay typescript",
"test": "yarn workspace @cloudcare/react-native-mobile test"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/react": "^18.2.6",
"@types/react-native": "0.71.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.37.5",
"genversion": "3.0.2",
"jest": "^26.0.1",
"lerna": "9.0.5",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.1.0",
"react-native": "0.70.0",
"react-native-builder-bob": "^0.17.1",
"react-native-gradle-plugin": "^0.71.19",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@3.4.1"
}