-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.95 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
{
"name": "signumwallet",
"description": "The mobile wallet for Signum Network Blockchain",
"version": "1.0.0",
"keywords": [
"cryptocoin",
"signum",
"blockchain",
"mobile",
"wallet"
],
"contributors": [
"titanishu",
"blankey1337",
"ohager",
"timewalker"
],
"repository": {
"type": "git",
"url": "https://github.com/signum-network/signumwallet"
},
"engines": {
"node": ">=16"
},
"license": "GPL-3.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"translations:sort": "node tasks/sortJsonDir.js src/translations && git add src/translations/*.json",
"test": "jest",
"tsc": "tsc --init --pretty --jsx react",
"prepare": "husky install",
"format": "prettier --write ."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-clipboard/clipboard": "^1.11.1",
"@react-native-community/checkbox": "^0.5.14",
"@react-native-community/netinfo": "^9.3.8",
"@react-native-community/push-notification-ios": "^1.0.3",
"@react-native-community/slider": "^4.4.1",
"@react-native-masked-view/masked-view": "^0.2.8",
"@react-native-picker/picker": "^2.4.8",
"@react-navigation/bottom-tabs": "^6.5.3",
"@react-navigation/elements": "^1.3.13",
"@react-navigation/native": "^6.1.2",
"@react-navigation/stack": "^6.3.11",
"@signumjs/core": "^1.0.0-rc.64",
"@signumjs/crypto": "^1.0.0-rc.64",
"@signumjs/http": "^1.0.0-rc.64",
"@signumjs/standards": "^1.0.0-rc.64",
"@signumjs/util": "^1.0.0-rc.64",
"d3-shape": "^3.2.0",
"i18n-js": "^4.2.2",
"lodash": "^4.17.21",
"p-retry": "^5.1.2",
"react": "18.2.0",
"react-native": "0.71.1",
"react-native-color-matrix-image-filters": "^6.0.3",
"react-native-gesture-handler": "^2.9.0",
"react-native-keychain": "^8.1.1",
"react-native-localize": "^2.2.4",
"react-native-markdown-package": "^1.8.2",
"react-native-mask-input": "^1.2.3",
"react-native-qrcode-svg": "^6.2.0",
"react-native-reanimated": "^2.14.4",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.19.0",
"react-native-svg": "^13.7.0",
"react-native-svg-charts": "^5.4.0",
"react-native-touch-id": "^4.4.1",
"react-native-url-polyfill": "^1.3.0",
"react-native-version-number": "^0.3.6",
"react-native-vision-camera": "^2.15.4",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"rn-swipe-button": "^1.3.8",
"vision-camera-code-scanner": "0.2.0"
},
"rnpm": {
"assets": [
"./src/assets/fonts/"
]
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.0.0",
"@tsconfig/react-native": "^2.0.2",
"@types/d3-shape": "^3.1.1",
"@types/i18n-js": "^3.0.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.129",
"@types/react": "^18.0.24",
"@types/react-native-dotenv": "^0.2.0",
"@types/react-native-svg-charts": "^5.0.2",
"@types/react-native-vector-icons": "^6.4.1",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"concurrently": "^7.6.0",
"eslint": "^8.19.0",
"husky": "^8.0.0",
"jest": "^29.4.1",
"lint-staged": "^13.1.0",
"metro-react-native-babel-preset": "^0.74.1",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"react-devtools": "^4.10.4",
"react-native-cli": "^2.0.1",
"react-native-dotenv": "^3.4.7",
"react-test-renderer": "^18.2.0",
"sort-json": "^2.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.8.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"overrides": {
"react-native-svg-charts": {
"react-native-svg": "$react-native-svg"
}
}
}