-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
{
"name": "react-native-scrollable-page-view",
"version": "0.0.2",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"build:commonjs": "babel src --out-dir lib/commonjs --extensions '.ts,.tsx' --source-maps",
"build:module": "tsc src/*.tsx --module es2015 --target es5 --jsx 'react-native' --sourceMap --skipLibCheck --allowSyntheticDefaultImports --outDir lib/module",
"build:typescript": "tsc src/*.tsx --declaration --emitDeclarationOnly --jsx 'react-native' --skipLibCheck --allowSyntheticDefaultImports --outDir lib/typescript",
"prepublishOnly": "node scripts/prepublishOnly.js",
"postpublish": "node scripts/postpublish.js",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"types": "lib/typescript/index.d.ts",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"files": [
"src",
"lib"
],
"description": "A ViewPager react-native and react-native-web.",
"keywords": [
"react-native",
"ViewPager",
"UIPageViewController",
"react-native-scrollable-page-view"
],
"author": "heineiuo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/heineiuo/react-native-scrollable-page-view.git"
},
"bugs": {
"url": "https://github.com/heineiuo/react-native-scrollable-page-view/issues"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.12.9",
"@expo/vector-icons": "^12.0.5",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"eslint-config-react-app": "^7.0.0",
"eslint-config-universe": "^10.0.0",
"expo": "^44.0.0",
"expo-status-bar": "~1.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-web": "0.17.1",
"typescript": "~4.3.5"
},
"eslintConfig": {
"extends": [
"universe/native",
"universe/web",
"react-app"
]
}
}