-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.24 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@kiroboio/web3-react-native-safe-transfer",
"version": "1.0.0",
"description": "Safe Transfer & Swap React Component for React Native apps",
"author": "Kirobo",
"license": "GPL-V3",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"format": "prettier --write ./dev",
"prepare": "npm run build",
"xprepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"lint:check": "npm run eslint:check",
"eslint": "tsc --noemit && eslint --max-warnings=0 --ext .ts,.tsx dev",
"eslint:fix": "tsc --noemit && eslint --max-warnings=0 --fix --ext .ts,.tsx dev",
"eslint:check": "eslint-config-prettier src/index.tsx"
},
"dependencies": {
"@kiroboio/safe-transfer-lib": "github:kiroboio/ki-safe-transfer-lib#develop-lite",
"@simbathesailor/use-what-changed": "1.0.0",
"@uniswap/sdk": "^3.0.3",
"axios": "0.21.1",
"base-64": "^1.0.0",
"bip39": "3.0.3",
"bn.js": "5.2.0",
"ethereum-input-data-decoder": "0.3.2",
"ethers": "5.0.30",
"ismobilejs": "1.1.1",
"lodash.merge": "4.6.2",
"mobx": "6.1.8",
"mobx-react-lite": "3.2.0",
"mobx-state-tree": "5.0.1",
"mst-persist": "^0.1.3",
"node-libs-browser": "^2.2.1",
"numeral": "2.0.6",
"reactotron-core-client": "2.8.10",
"reactotron-mst": "3.1.3",
"reactotron-react-native": "^5.0.1",
"source-map-js": "0.6.2",
"truffle-privatekey-provider": "1.5.0",
"typescript": "4.2",
"ua-parser-js": "0.7.28",
"uuid": "8.3.2",
"web3": "^1.7.0",
"web3-utils": "1.3.4",
"yup": "0.32.9"
},
"peerDependencies": {
"react": "17.0.2",
"react-native": "^0.67.2",
"react-native-crypto": "^2.2.0",
"react-native-event-listeners": "^1.0.7",
"react-native-randombytes": "^3.6.1",
"react-native-securerandom": "^1.0.0",
"react-native-sync-localstorage": "^0.0.3",
"rn-nodeify": "tradle/rn-nodeify"
},
"devDependencies": {
"@emotion/react": "11.1.1",
"@emotion/styled": "11.0.0",
"@types/eslint-config-prettier": "6.11.0",
"@types/jest": "26.0.24",
"@types/mdx-js__react": "1.5.3",
"@types/node": "14.14.35",
"@types/numeral": "2.0.1",
"@types/react": "17.0.3",
"@types/truffle-privatekey-provider": "1.1.0",
"@types/ua-parser-js": "0.7.36",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"docusaurus": "1.14.7",
"eslint-config-prettier": "8.3.0",
"fliegdoc": "0.5.1",
"jest": "27.0.6",
"prettier": "2.2.1",
"react": "17.0.1",
"react-native-crypto": "^2.2.0",
"react-scripts": "4.0.3",
"reactotron-core-client": "2.8.10",
"reactotron-mst": "3.1.3",
"ts-jest": "27.0.3",
"typedoc": "0.21.4",
"typedoc-plugin-markdown": "3.10.3",
"typescript": "4.2"
},
"keywords": [
"kirobo",
"kiroboio",
"web3",
"web3-react",
"safe-transfer",
"web3-provider-connector",
"web3-connector"
],
"files": [
"lib/**/*",
"index.js",
"index.d.ts"
]
}