forked from GaelCO/react-native-linkedin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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": "@symhomendra21/react-native-linkedin",
"version": "2.1.7",
"main": "lib/index.tsx",
"description": "React-Native LinkedIn, a simple LinkedIn login library for React-Native with WebView and Modal - compatibility with RN 0.69",
"repository": {
"type": "git",
"url": "git+https://github.com/SymntxHomendra51/react-native-linkedin.git"
},
"author": "Xavier Carpentier <[email protected]> (https://xaviercarpentier.com/)",
"bugs": {
"url": "https://github.com/SymntxHomendra51/react-native-linkedin/issues"
},
"homepage": "https://github.com/SymntxHomendra51/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": "tslint --project .",
"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": {
"deprecated-react-native-prop-types": "^2.3.0",
"expo-random": "^12.3.0",
"query-string": "7.1.1",
"ramda": "0.28.0",
"react-native-get-random-values": "^1.8.0",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/jest": "29.0.3",
"@types/ramda": "^0.28.15",
"@types/react": "~18.0.21",
"@types/react-native": "~0.70.3",
"@types/uuid": "^8.3.4",
"babel-jest": "29.0.3",
"babel-preset-expo": "^9.2.0",
"babel-preset-react-native": "^4.0.1",
"expo": "^46.0.10",
"jest-expo": "^46.0.1",
"json": "^11.0.0",
"react": "18.2.0",
"react-native": "0.70.1",
"react-native-webview": "11.23.1",
"react-test-renderer": "18.2.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "~4.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-webview": "*"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"testMatch": [
"**/*.test.ts?(x)"
]
},
"directories": {
"lib": "lib"
},
"packageManager": "[email protected]"
}