forked from smuxx/react-native-linkedin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.62 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.62 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
{
"name": "@gcou/react-native-linkedin",
"version": "2.5.0",
"main": "lib/index.tsx",
"description": "React-Native LinkedIn, a simple LinkedIn login library for React-Native with WebView and Modal - compatibility with RN 0.73",
"repository": {
"type": "git",
"url": "git+https://github.com/GaelCO/react-native-linkedin.git"
},
"author": "Xavier Carpentier <xcapetir@gmail.com> (https://xaviercarpentier.com/)",
"bugs": {
"url": "https://github.com/GaelCO/react-native-linkedin/issues"
},
"homepage": "https://github.com/GaelCO/react-native-linkedin",
"license": "MIT",
"scripts": {
"start": "yarn config:dev && expo start",
"build": "rm -rf lib/ && node_modules/.bin/tsc && cp -rf src lib",
"config:dev": "json -I -f package.json -e 'this.main=\"node_modules/expo/AppEntry.js\"'",
"config:npm": "json -I -f package.json -e 'this.main=\"lib/index.tsx\"'",
"test": "TZ=Europe/Paris jest --no-watchman",
"lint": "eslint .",
"tsc": "tsc --noEmit",
"cleaning": "rm -rf node_modules && rm -f yarn.lock && yarn install && watchman watch-del-all && rm -fr $TMPDIR/react-*"
},
"keywords": [
"react-native",
"react-native-linkedin",
"linkedin"
],
"dependencies": {
"query-string": "9.3.1",
"react-native-get-random-values": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/runtime": "^7.29.2",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.83.4",
"@react-native/eslint-config": "0.83.4",
"@react-native/metro-config": "0.83.4",
"@react-native/typescript-config": "0.83.4",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.14",
"@types/react-test-renderer": "^19.1.0",
"@types/uuid": "^10.0.0",
"babel-preset-expo": "^54.0.10",
"eslint": "^8.57.1",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-testing-library": "^7.16.2",
"expo": "^55.0.8",
"jest": "^29.7.0",
"jest-expo": "^55.0.11",
"json": "^11.0.0",
"prettier": "^3.8.1",
"react": "19.2.0",
"react-native": "0.83.4",
"react-native-webview": "13.16.1",
"react-test-renderer": "19.2.0",
"typescript": "~5.9.3"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.81",
"react-native-webview": "*"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.13.0"
}