-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
76 lines (76 loc) · 1.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
{
"name": "react-native-plaid-link-sdk",
"version": "11.13.3",
"description": "React Native Plaid Link SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"react-native": "src/index.ts",
"files": [
"dist/**/*",
"android/**/*",
"ios/**/*",
"react-native-plaid-link-sdk.podspec",
"src/**/*"
],
"scripts": {
"lint": "eslint \"./**/*.{js,jsx}\" --fix",
"prettier": "prettier \"./**/*.{js,jsx}\" --write",
"test": "jest"
},
"keywords": [
"react-native",
"Plaid"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/example/"
]
},
"author": "Plaid",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-plugin": "^1.1.0",
"@types/jest": "^26.0.14",
"@types/react": "^18.2.6",
"@types/react-native": "^0.71.3",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.0.3",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.1.0",
"jest": "^29.6.1",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"react": "18.2.0",
"react-native": "0.74.3",
"typescript": "^4.9.5"
},
"codegenConfig": {
"name": "rnplaidlink",
"type": "all",
"jsSrcsDir": "./src/fabric",
"android": {
"javaPackageName": "com.plaid"
}
}
}