-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
143 lines (143 loc) · 6.14 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "ckbull-mobile-wallet",
"private": true,
"main": "./index.js",
"scripts": {
"start": "yarn generate && expo start",
"start:fresh": "yarn start -c",
"android": "expo run:android",
"android:fresh": "yarn start:fresh --android",
"ios": "expo run:ios",
"ios:fresh": "yarn start:fresh --ios",
"web": "yarn start --web",
"web:fresh": "yarn start:fresh --web",
"generate": "yarn generate:openapi && yarn generate:icons && yarn generate:images",
"generate:icons": "node ./src/script/iconGeneratorNative.js ./src/asset/icon/ ./src/module/common/icons/ && prettier --write ./src/module/common/icons/",
"generate:images": "node ./src/script/imagesGenerator.js ./src/asset/image/",
"generate:fonts": "node ./src/script/fontGenerator.js ./src/asset/fonts/",
"generate-react--native-components-icons": "node ./src/script/iconGeneratorNative.js ./src/module/common/component/base/assets/svgs/ ./src/module/common/component/base/assets/icons/ && prettier --write ./src/module/common/component/base/assets/icons/",
"generate:openapi": "openapi -i openapi-spec.json -o src/module/api/service --exportSchemas=true --useUnionTypes",
"eject": "expo eject",
"test": "jest --maxWorkers=30% --coverage",
"test:only": "jest --maxWorkers=30% --coverage --",
"test:unit": "jest --maxWorkers=30% --coverage ./test/unit",
"test:unit:ci": "jest --runInBand --coverage ./test/unit",
"test:integration": "jest --maxWorkers=30% --coverage ./test/integration",
"test:debug": "jest --coverage --no-cache --runInBand || true",
"check-types": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.json --max-warnings 0"
},
"dependencies": {
"@ckb-lumos/lumos": "^0.22.0-next.4",
"@exact-realty/multipart-parser": "^1.0.13",
"@expo/config-plugins": "~7.2.2",
"@peersyst/react-hooks": "^2.2.10",
"@peersyst/react-native-components": "^3.5.0-alpha.0",
"@peersyst/react-native-styled": "^3.2.3",
"@peersyst/react-native-transak": "1.0.0",
"@peersyst/react-types": "^1.6.2",
"@peersyst/react-utils": "^2.4.1",
"@rather-labs/nrc-721-sdk": "0.0.16",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/hooks": "^3.0.0",
"@react-navigation/bottom-tabs": "^6.5.14",
"@react-navigation/native": "^6.1.12",
"@react-navigation/native-stack": "^6.9.20",
"@spore-sdk/core": "^0.2.0-beta.2",
"bech32": "2.0.0",
"big-integer": "^1.6.52",
"buffer": "^6.0.3",
"core-js": "^3.36.0",
"cross-fetch": "^4.0.0",
"crypto-browserify": "^3.12.0",
"dotbit": "^0.4.29",
"expo": "^49.0.0",
"expo-asset": "~8.10.1",
"expo-barcode-scanner": "~12.5.3",
"expo-camera": "~13.4.4",
"expo-clipboard": "~4.3.1",
"expo-constants": "~14.4.2",
"expo-crypto": "~12.4.1",
"expo-file-system": "~15.4.5",
"expo-font": "~11.4.0",
"expo-haptics": "~12.4.0",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-local-authentication": "~13.4.1",
"expo-localization": "~14.3.0",
"expo-random": "~13.2.0",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-web-browser": "~12.3.2",
"fast-xml-parser": "^4.3.5",
"i18next": "^23.10.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^14.0.5",
"react-native": "0.72.10",
"react-native-expo-bitcoinjs-lib": "^2.4.4",
"react-native-expo-crypto": "^2.1.4",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.12.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-pager-view": "6.2.0",
"react-native-qrcode-svg": "^6.1.2",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-web": "~0.19.6",
"react-native-webp-format": "^1.1.2",
"react-native-webview": "13.2.2",
"react-query": "^3.34.14",
"recoil": "^0.7.7",
"stream-browserify": "^3.0.0",
"text-encoding-polyfill": "^0.6.7",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
"@swisstype/essential": "^0.0.5",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.4.3",
"@types/bs58": "^4.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.20",
"@types/react": "~18.2.14",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-expo": "^49.0.0",
"openapi-typescript": "^6.7.4",
"openapi-typescript-codegen": "^0.27.0",
"prettier": "^3.2.5",
"react-test-renderer": "18.2.0",
"text-encoding": "^0.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.1.3"
},
"resolutions": {
"react-native-pager-view": "6.2.2",
"react-native-svg": "13.9.0",
"react-native-gesture-handler": "2.12.0",
"react-native-reanimated": "~3.3.0",
"bech32": "2.0.0",
"expo-modules-autolinking": "~1.5.0",
"@expo/config-plugins": "~7.2.2",
"@expo/prebuild-config": "~6.2.4",
"@expo/metro-config": "~0.10.0"
},
"version": "1.0.0"
}