forked from terrysahaidak/react-native-gallery-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "react-native-gallery-toolkit",
"version": "1.0.0-alpha.0",
"private": false,
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/src/index.d.ts",
"files": [
"lib/",
"src/"
],
"scripts": {
"postinstall": "npx patch-package",
"prepare": "bob build",
"initialize": "npm i && cd Example && npm i && npx pod-install"
},
"peerDependencies": {
"react-native-reanimated": "^2.0.0-alpha.6",
"react-native": "*",
"react": "*",
"react-native-gesture-handler": "*"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/runtime": "^7.10.2",
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/react": "^16.9.49",
"@types/react-native": "^0.60.21",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.2.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-native": "3.7.0",
"prettier": "^1.18.2",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-reanimated": "^2.0.0-alpha.6",
"tsdx": "^0.13.3",
"typescript": "^3.9.5"
},
"jest": {
"preset": "react-native"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}