forked from novasamatech/parity-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "NativeSigner",
"version": "0.0.1",
"private": true,
"license": "GPL-3.0",
"scripts": {
"build-rust-ios": "cd rust/signer && make ios",
"ios": "yarn run build-rust-ios && yarn run cli run-ios",
"build-rust-android": "cd rust/signer && make android",
"android": "yarn run build-rust-android && yarn run cli run-android",
"start": "yarn run ios",
"test": "jest",
"lint": "",
"commit": ""
},
"dependencies": {
"bignumber.js": "^4.0.0",
"debounce": "^1.0.0",
"hoist-non-react-statics": "^2.5.0",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.55.3",
"react-native-camera": "^1.1.1",
"react-native-keyboard-aware-scroll-view": "^0.5.0",
"react-native-markdown-renderer": "^3.2.8",
"react-native-qrcode": "^0.2.6",
"react-native-secure-storage": "https://github.com/debris/react-native-secure-storage",
"react-native-simple-picker": "^2.1.0",
"react-native-tabs": "^1.0.9",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^2.0.1",
"unstated": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "18.1.0",
"jest-react-native": "^18.0.0",
"pre-git": "^3.14.0",
"prettier": "1.12.1",
"reactotron-react-native": "^1.14.0"
},
"rnpm": {
"assets": [
"./res/fonts"
]
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/jest-setup.js"
]
}
}