-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
84 lines (84 loc) · 2.65 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
{
"name": "instabug-reactnative",
"description": "React Native plugin for integrating the Instabug SDK",
"version": "13.4.0",
"author": "Instabug (https://instabug.com)",
"repository": "github:Instabug/Instabug-React-Native",
"homepage": "https://www.instabug.com/platforms/react-native",
"bugs": "https://github.com/Instabug/Instabug-React-Native/issues",
"license": "MIT",
"main": "dist/index",
"types": "dist/index.d.ts",
"react-native": "src/index.ts",
"bin": {
"instabug": "bin/index.js"
},
"keywords": [
"react-native",
"instabug",
"debugging",
"errors",
"exceptions",
"logging",
"reporting",
"feedback"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn lint --max-warnings=0",
"format": "prettier --check . --ignore-path .gitignore",
"format:fix": "prettier --write . --ignore-path .gitignore",
"test": "jest",
"build": "yarn build:lib && yarn build:cli",
"build:lib": "tsc",
"build:cli": "npx rollup -c rollup.config.js --bundleConfigAsCjs",
"example": "yarn --cwd examples/default",
"pods": "cd examples/default && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60.0"
},
"devDependencies": {
"@apollo/client": "^3.7.0",
"@instabug/danger-plugin-coverage": "Instabug/danger-plugin-coverage",
"@react-native-community/eslint-config": "^3.1.0",
"@react-navigation/native": "^6.1.7",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"@types/react-native": "^0.72.2",
"axios": "^1.2.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.6.2",
"commander": "^11.0.0",
"danger": "^11.2.5",
"eslint": "^8.24.0",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-prettier": "^5.0.0",
"esprima": "^4.0.1",
"form-data": "^4.0.0",
"jest": "^29.6.2",
"metro-react-native-babel-preset": "0.77.0",
"nock": "^13.2.9",
"pod-install": "^0.1.38",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-native": "^0.72.3",
"react-native-navigation": "7.36.0",
"react-navigation": "^4.4.4",
"rollup": "^3.27.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"ts-jest": "^29.1.1",
"typescript": "^4.8.4",
"wait-for-expect": "^3.0.2",
"xhr2": "^0.2.1"
}
}