-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
81 lines (81 loc) · 2.39 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
{
"name": "react-native-scroll-into-view",
"version": "2.0.2",
"description": "React-Native port of DOMElement.scrollIntoView() web function, for ScrollView",
"main": "node_modules/expo/AppEntry.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/slorber/react-native-scroll-into-view.git"
},
"files": [
"build"
],
"keywords": [
"react-native",
"react",
"scrollIntoView",
"form",
"scroll",
"into",
"view",
"expo",
"visible"
],
"author": "Sébastien Lorber",
"license": "MIT",
"bugs": {
"url": "https://github.com/slorber/react-native-scroll-into-view/issues"
},
"homepage": "https://github.com/slorber/react-native-scroll-into-view#readme",
"scripts": {
"prestart": "yarn configure:expo",
"start": "concurrently \"yarn run start:expo\" \"yarn run start:typecheck\"",
"start:expo": "expo start",
"start:typecheck": "tsc --noEmit --watch",
"publish:expo": "expo publish",
"build": "tsc",
"build:clear": "rimraf build",
"prepublish": "yarn build && yarn configure:publish",
"postpublish": "yarn configure:expo && yarn build:clear",
"configure:publish": "json -I -f package.json -e 'this.main=\"build/index.js\"'",
"configure:expo": "json -I -f package.json -e 'this.main=\"node_modules/expo/AppEntry.js\"'"
},
"dependencies": {
"prop-types": ">=15.6.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@babel/preset-typescript": "^7.1.0",
"@types/expo": "31.0.9",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-navigation": "^3.0.1",
"@types/yup": "^0.26.7",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-expo": "8.3.0",
"concurrently": "^4.0.1",
"expo": "^41.0.1",
"expo-cli": "^4.4.3",
"formik": "^1.0.1",
"jest-expo": "^41.0.0",
"json": "^10.0.0",
"lodash": "^4.17.10",
"prettier": "^1.15.2",
"react": "16.13.1",
"react-native": "0.64.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-keyboard-aware-scroll-view": "^0.9.3",
"react-navigation": "^4.4.4",
"react-navigation-stack": "^2.10.4",
"react-test-renderer": "16.3.1",
"rimraf": "^2.6.2",
"typescript": "~4.0.0",
"yup": "^0.26.10"
}
}