forked from Peersyst/near-mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 5.44 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
{
"name": "near-mobile-wallet",
"private": true,
"main": "./index.js",
"scripts": {
"start": "yarn generate && expo start",
"start:fresh": "yarn start -c",
"android": "yarn start --android",
"android:fresh": "yarn start:fresh --android",
"ios": "yarn start --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-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%",
"test:only": "jest --maxWorkers=30% --",
"test:ci": "jest --runInBand",
"test:debug": "jest --no-cache --runInBand || true",
"check-types": "tsc --noemit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.json --max-warnings 0"
},
"dependencies": {
"@expo-google-fonts/manrope": "^0.2.2",
"@peersyst/react-hooks": "^2.2.15",
"@peersyst/react-native-components": "^3.5.7",
"@peersyst/react-native-styled": "^3.2.6",
"@peersyst/react-utils": "^2.5.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/hooks": "^3.0.0",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.3.16",
"assert": "^2.1.0",
"big-integer": "^1.6.51",
"bignumber.js": "^9.1.2",
"borsh": "^1.0.0",
"buffer": "^6.0.3",
"color": "^4.2.3",
"core-js": "^3.26.0",
"events": "^3.3.0",
"expo": "^49.0.0",
"expo-barcode-scanner": "~12.5.3",
"expo-build-properties": "~0.4.1",
"expo-camera": "~13.4.4",
"expo-clipboard": "~4.3.1",
"expo-constants": "~14.4.2",
"expo-crypto": "~12.4.1",
"expo-device": "~5.4.0",
"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-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.17",
"fast-xml-parser": "^4.0.7",
"https-browserify": "^1.0.0",
"i18next": "^23.7.6",
"js-sha256": "^0.11.0",
"near-api-js": "^1.0.0",
"near-seed-phrase": "^0.2.0",
"path-browserify": "^1.0.1",
"posthog-react-native": "^2.10.0",
"process": "^0.11.10",
"react": "18.2.0",
"react-i18next": "^13.4.1",
"react-native": "0.72.6",
"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-webview": "13.2.2",
"react-query": "^3.34.14",
"recoil": "^0.7.7",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.3"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-async-generator-functions": "^7.16.8",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@peersyst/react-types": "^1.6.2",
"@swisstype/react": "^0.0.2",
"@testing-library/jest-native": "^5.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^11.3.0",
"@types/bn.js": "^5.1.1",
"@types/bs58": "^4.0.1",
"@types/color": "^3.0.6",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.22",
"@types/react": "~18.2.14",
"@types/react-native": "~0.70.6",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"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",
"ts-jest": "^29.1.2",
"typescript": "^5.1.3"
},
"resolutions": {
"react-native-safe-area-context": "4.6.3",
"react-native-svg": "13.9.0",
"expo-barcode-scanner": "~12.5.3",
"bip39": "^3.1.0",
"react-native-pager-view": "6.2.2"
}
}