-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
92 lines (92 loc) · 2.42 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
{
"name": "@fullstory/react-native",
"version": "1.7.2",
"description": "The official FullStory React Native plugin",
"repository": "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 --silent",
"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.2.0",
"@fullstory/babel-plugin-react-native": "^1.3.0"
},
"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/eslint-plugin-specs": "^0.72.4",
"@tsconfig/node10": "^1.0.9",
"@types/jest": "^28.1.4",
"@types/react": "^18.3.0",
"@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": "^49.0.0",
"jest": "^29.0.0",
"prettier": "3.0.2",
"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"
]
}
}