-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
80 lines (80 loc) · 2.69 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
{
"name": "dd-sdk-reactnative",
"description": "A client-side React Native module to interact with Datadog",
"keywords": [
"datadog",
"react-native",
"ios",
"android"
],
"author": "Datadog (https://github.com/DataDog)",
"homepage": "https://github.com/DataDog/dd-sdk-reactnative#readme",
"repository": "https://github.com/DataDog/dd-sdk-reactnative",
"bugs": {
"url": "https://github.com/DataDog/dd-sdk-reactnative/issues"
},
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"example",
"example-new-architecture"
]
},
"scripts": {
"prepare": "genversion --es6 --semi packages/core/src/version.ts && lerna run prepare",
"test": "genversion --es6 --semi packages/core/src/version.ts && jest",
"lint": "genversion --es6 --semi packages/core/src/version.ts && eslint .",
"example": "yarn --cwd example",
"postinstall": "./packages/react-navigation/fix-react-navigation-import-in-dependencies.sh"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.12.15",
"@react-native/babel-preset": "0.73.21",
"@react-native/eslint-config": "0.73.2",
"@react-native/metro-config": "0.73.5",
"@react-native/typescript-config": "0.73.1",
"@testing-library/react-native": "7.0.2",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.6",
"@types/react-native": "0.71.0",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"dd-trace": "^5.18.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-arca": "0.15.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-react-native": "3.10.0",
"genversion": "3.0.2",
"jest": "^29.7.0",
"lerna": "8.1.6",
"pod-install": "0.1.14",
"prettier": "2.2.0",
"react": "18.2.0",
"react-native": "0.73.9",
"react-native-builder-bob": "0.26.0",
"react-native-gradle-plugin": "^0.71.19",
"react-native-webview": "13.12.2",
"react-test-renderer": "18.1.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"packageManager": "[email protected]",
"resolutions": {
"ejs": "3.1.10",
"shell-quote": "^1.7.3"
}
}