package.json 2.17 KB
Newer Older
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
1
2
3
4
{
  "name": "NativeSigner",
  "version": "0.0.1",
  "private": true,
Tomasz Drwięga's avatar
Tomasz Drwięga committed
5
  "license": "GPL-3.0",
6
7
8
9
  "engines": {
    "node": ">=8.3",
    "yarn": "^1.3.2"
  },
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
10
  "scripts": {
11
12
    "build-rust-ios": "cd rust/signer && make ios",
    "build-rust-android": "cd rust/signer && make android",
13
14
    "ios": "yarn run build-rust-ios && react-native run-ios",
    "android": "yarn run build-rust-android && react-native run-android",
fro's avatar
fro committed
15
    "start": "yarn run ios",
16
    "test": "jest",
YJ's avatar
YJ committed
17
    "lint": "eslint",
18
    "commit": "commit-wizard"
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
19
20
  },
  "dependencies": {
21
    "bignumber.js": "^4.0.0",
Marek Kotewicz's avatar
Marek Kotewicz committed
22
    "debounce": "^1.0.0",
Alexey's avatar
Alexey committed
23
    "hoist-non-react-statics": "^2.5.0",
fro's avatar
fro committed
24
    "prop-types": "^15.6.1",
YJ's avatar
YJ committed
25
    "react": "16.8.6",
YJ's avatar
YJ committed
26
    "react-native": "0.60.2",
27
    "react-native-camera": "^2.1.1",
28
    "react-native-keyboard-aware-scroll-view": "^0.8.0",
29
    "react-native-markdown-renderer": "^3.2.8",
30
    "react-native-popup-menu": "^0.15.6",
YJ's avatar
YJ committed
31
    "react-native-secure-storage": "git+https://github.com/debris/react-native-secure-storage.git",
Alexey's avatar
Alexey committed
32
    "react-native-simple-picker": "^2.1.0",
Marek Kotewicz's avatar
Marek Kotewicz committed
33
    "react-native-tabs": "^1.0.9",
Alexey's avatar
Alexey committed
34
    "react-native-vector-icons": "^4.6.0",
35
    "react-navigation": "^3.11.1",
Alexey's avatar
Alexey committed
36
    "unstated": "^2.1.1"
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
37
38
  },
  "devDependencies": {
YJ's avatar
YJ committed
39
40
41
42
43
    "@babel/cli": "^7.5.0",
    "@babel/core": "^7.5.4",
    "@babel/plugin-proposal-class-properties": "^7.5.0",
    "@babel/plugin-transform-runtime": "^7.5.0",
    "@babel/runtime": "^7.5.4",
YJ's avatar
YJ committed
44
    "@react-native-community/eslint-config": "^0.0.5",
45
    "babel-eslint": "^10.0.1",
YJ's avatar
YJ committed
46
    "babel-jest": "^24.8.0",
YJ's avatar
YJ committed
47
    "eslint": "^6.0.1",
YJ's avatar
YJ committed
48
    "jest": "^24.8.0",
Marek Kotewicz's avatar
Marek Kotewicz committed
49
    "jest-react-native": "^18.0.0",
YJ's avatar
YJ committed
50
    "metro-react-native-babel-preset": "^0.55.0",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
51
    "pre-git": "^3.14.0",
Alexey's avatar
Alexey committed
52
    "prettier": "1.12.1",
YJ's avatar
YJ committed
53
    "react-test-renderer": "16.8.6",
54
    "reactotron-react-native": "^2.1.5"
Alexey's avatar
Alexey committed
55
56
57
58
59
  },
  "rnpm": {
    "assets": [
      "./res/fonts"
    ]
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
60
61
  },
  "jest": {
Marek Kotewicz's avatar
Marek Kotewicz committed
62
    "preset": "react-native",
63
64
65
    "setupFiles": [
      "<rootDir>/jest-setup.js"
    ]
66
67
68
69
70
71
72
73
74
75
76
77
78
  },
  "release": {
    "analyzeCommits": "simple-commit-message"
  },
  "config": {
    "pre-git": {
      "commit-msg": "simple",
      "pre-commit": [],
      "pre-push": [],
      "post-commit": [],
      "post-checkout": [],
      "post-merge": []
    }
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
79
80
  }
}