-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.59 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.59 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
{
"name": "@fullstory/react-native",
"version": "1.9.0",
"description": "The official FullStory React Native plugin",
"repository": {
"type": "git",
"url": "git://github.com/fullstorydev/fullstory-react-native.git"
},
"homepage": "https://github.com/fullstorydev/fullstory-react-native",
"author": "FullStory",
"license": "MIT",
"main": "src/index.ts",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"files": [
"android",
"ios",
"plugin/build",
"src",
"fullstory_react-native.podspec",
"app.plugin.js",
"lib"
],
"keywords": [
"react-native",
"fullstory"
],
"scripts": {
"build": "tsc --build ./plugin",
"clean": "tsc --build --clean ./plugin",
"test": "npm run test:plugin & npm run test:src",
"test:plugin": "jest --config ./plugin/jest.config.js",
"test:src": "jest --config jest.config.js",
"format": "prettier --write src plugin/src",
"lint": "npm run lint:expo & npm run lint:project",
"lint:expo": "eslint ./plugin",
"lint:project": "eslint ./src",
"prepack": "bob build"
},
"dependencies": {
"@fullstory/babel-plugin-annotate-react": "^2.3.2",
"@fullstory/babel-plugin-react-native": "^1.6.1"
},
"peerDependencies": {
"expo": ">=47.0.0",
"react": "*",
"react-native": ">=0.66.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/babel-preset": "0.82.0",
"@react-native/eslint-plugin-specs": "^0.72.4",
"@testing-library/react-native": "^13.3.3",
"@tsconfig/node10": "^1.0.9",
"@types/jest": "^29.5.12",
"@types/react": "19.1.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-jest": "^29.6.4",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-jest": "^27.2.3",
"expo": "^54.0.0",
"jest": "^29.7.0",
"prettier": "3.0.2",
"react": "19.1.1",
"react-native": "0.82.0",
"react-native-builder-bob": "^0.21.3",
"ts-jest": "^29.0.0",
"typescript": "^4.9.5"
},
"overrides": {
"semver": "7.5.3"
},
"codegenConfig": {
"name": "FullStorySpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.fullstory.reactnative"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}