-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.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
{
"name": "@pubflow/react-native",
"version": "0.4.1",
"description": "React Native adapter for Pubflow framework - Now with snake_case support and Bridge Payments",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"clean": "rm -rf dist"
},
"keywords": [
"pubflow",
"react-native",
"expo",
"api",
"bridge",
"authentication"
],
"author": "Pubflow, Inc.",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@pubflow/core": "^0.4.0",
"@react-native-async-storage/async-storage": "^1.19.3",
"@react-native-picker/picker": "^2.5.1",
"@react-native-community/datetimepicker": "^8.5.1",
"react-hook-form": "^7.48.2",
"@hookform/resolvers": "^3.3.2",
"swr": "^2.2.4"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@types/react": "^18.2.25",
"@types/react-native": "^0.72.3",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-native": "^0.72.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.17.0",
"react": ">=17.0.0",
"react-native": ">=0.68.0"
},
"optionalDependencies": {
"expo-secure-store": ">=12.0.0"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pubflow/react-native.git"
},
"bugs": {
"url": "https://github.com/pubflow/react-native/issues"
},
"homepage": "https://github.com/pubflow/react-native#readme"
}