-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
74 lines (74 loc) · 2.3 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
{
"name": "wallet",
"version": "0.0.1",
"license": "MIT",
"private": true,
"contributors": [
"Kim Hamilton Duffy (https://github.com/kimdhamilton",
"Sean Neville (https://github.com/psnevio)",
"Brice Stacey <[email protected]> (https://m2.xyz)",
"Matt Venables <[email protected]> (https://m2.xyz)"
],
"main": "index.js",
"scripts": {
"android": "expo start --android",
"eject": "expo eject",
"ios": "expo start --ios",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"start": "expo start --clear",
"test": "jest --passWithNoTests",
"type-check": "tsc --pretty --noEmit"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@ethersproject/shims": "^5.5.0",
"@react-native-async-storage/async-storage": "^1.15.5",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"buffer": "^6.0.3",
"cross-fetch": "^3.1.5",
"ethers": "^5.4.4",
"expo": "^45.0.5",
"expo-barcode-scanner": "~11.3.0",
"expo-random": "^12.1.1",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"jsonpath-plus": "^7.0.0",
"lodash": "^4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-gesture-handler": "~2.2.1",
"react-native-get-random-values": "^1.7.2",
"react-native-json-tree": "^1.3.0",
"react-native-vector-icons": "^9.1.0",
"uuid": "^8.3.2",
"verite": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-plugin": "^7.14.5",
"@types/jest": "^28.1.3",
"@types/jsonpath": "^0.2.0",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-test-renderer": "^17.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.6.0",
"eslint-config-universe": "^10.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"jest-expo": "^45.0.1",
"prettier": "^2.4.1",
"react-test-renderer": "17.0.2",
"typescript": "~4.7.4"
}
}