This repository has been archived by the owner on Aug 11, 2023. It is now read-only.
forked from thebergamo/react-native-fbsdk-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 4.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "react-native-fbsdk-next",
"version": "8.0.4",
"description": "Facebook SDK support for React Native apps.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"sideEffects": false,
"author": {
"name": "Marcos Bérgamo"
},
"contributors": [
{
"name": "Zhuowen Deng"
},
{
"name": "Chris Hackmann"
},
{
"name": "Pouya Larjani"
},
{
"name": "Cody Winton"
},
{
"name": "Janic Duplessis"
},
{
"name": "Georges DIMITRY"
},
{
"name": "Mike Hardy"
}
],
"repository": {
"type": "git",
"url": "https://github.com/thebergamo/react-native-fbsdk-next.git"
},
"homepage": "https://github.com/thebergamo/react-native-fbsdk-next/",
"keywords": [
"react",
"react-native",
"react-component",
"ios",
"android",
"facebook",
"core"
],
"license": "MIT",
"scripts": {
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"lint:plugin": "eslint plugin/src/*",
"start": "react-native start",
"prepare": "bob build && npm run clean:plugin && npm run build:plugin",
"lint": "eslint ./src",
"test": "yarn validate:prettier && yarn validate:eslint && yarn jest",
"validate:eslint": "eslint \"src/**/*\"",
"validate:prettier": "prettier \"{src,jest,plugin/src}/**/*.{js,ts,tsx}\" --check",
"validate:ts": "tsc --noEmit",
"example:start": "cd ./RNFBSDKExample && yarn start",
"example:ios": "cd ./RNFBSDKExample/ios && rm -f Podfile.lock && pod install && yarn ios",
"example:android": "cd ./RNFBSDKExample && yarn android --no-jetifier",
"example:clean": "cd RNFBSDKExample && \\rm -fr yarn.lock node_modules ios/Podfile.lock && cd ..",
"example:install": "cd RNFBSDKExample && yarn && cd ios && (rm -f Podfile.lock && pod install || true) && cd ../..",
"example:devcopy": "yarn prepare && cp -rv android ios lib src *.podspec RNFBSDKExample/node_modules/react-native-fbsdk-next/",
"semantic-release": "semantic-release",
"jest": "jest"
},
"files": [
"android/src/main/AndroidManifest.xml",
"android/src/main/java/",
"android/build.gradle",
"ios",
"lib",
"src",
"LICENSE.txt",
"README.md",
"react-native-fbsdk-next.podspec",
"jest",
"tsconfig.json",
"app.plugin.js",
"expo-module.config.json",
"plugin/build/"
],
"dependencies": {
"@expo/config-plugins": "^4.0.4",
"xml2js": "^0.4.23"
},
"peerDependencies": {
"react-native": ">=0.63.3"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/runtime": "^7.17.2",
"@react-native-community/eslint-config": "^3.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/xml2js": "^0.4.9",
"@types/react": "^17.0.39",
"@types/react-native": "^0.66.16",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.1",
"babel-plugin-module-resolver": "^4.0.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.9.0",
"expo-module-scripts": "^2.0.0",
"jest": "^27.5.1",
"metro-react-native-babel-preset": "^0.68.0",
"prettier": "^2.5.1",
"react": "17.0.2",
"react-native": "^0.67.2",
"react-native-builder-bob": "^0.18.2",
"react-test-renderer": "17.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.5.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"bracketSameLine": true,
"parser": "typescript"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs"
],
"module",
"typescript"
]
},
"react-native": "src/index.ts",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}