package.json 2.32 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": "npm run build-rust-ios && react-native run-ios",
    "android": "npm 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
    "@babel/runtime": "^7.3.1",
22
    "bignumber.js": "^4.0.0",
Marek Kotewicz's avatar
Marek Kotewicz committed
23
    "debounce": "^1.0.0",
Alexey's avatar
Alexey committed
24
    "hoist-non-react-statics": "^2.5.0",
fro's avatar
fro committed
25
    "prop-types": "^15.6.1",
YJ's avatar
YJ committed
26
    "react": "16.8.6",
27
28
    "react-native": "0.60.3",
    "react-native-camera": "^2.1.1",
Alexey's avatar
Alexey committed
29
    "react-native-keyboard-aware-scroll-view": "^0.5.0",
30
    "react-native-markdown-renderer": "^3.2.8",
31
    "react-native-popup-menu": "^0.15.0",
Marek Kotewicz's avatar
Marek Kotewicz committed
32
    "react-native-secure-storage": "https://github.com/debris/react-native-secure-storage",
Alexey's avatar
Alexey committed
33
    "react-native-simple-picker": "^2.1.0",
Marek Kotewicz's avatar
Marek Kotewicz committed
34
    "react-native-tabs": "^1.0.9",
Alexey's avatar
Alexey committed
35
36
37
    "react-native-vector-icons": "^4.6.0",
    "react-navigation": "^2.0.1",
    "unstated": "^2.1.1"
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
38
39
  },
  "devDependencies": {
40
    "@babel/cli": "^7.0.0-beta.56",
YJ's avatar
YJ committed
41
42
    "@babel/core": "^7.4.5",
    "@babel/runtime": "^7.4.5",
YJ's avatar
YJ committed
43
44
    "@react-native-community/eslint-config": "^0.0.5",
    "eslint": "^6.0.1",
YJ's avatar
YJ committed
45
    "metro-react-native-babel-preset": "^0.54.1",
YJ's avatar
YJ committed
46
    "react-test-renderer": "16.8.6",
47
48
49
50
51
    "@babel/plugin-proposal-class-properties": "^7.3.0",
    "@babel/plugin-transform-runtime": "^7.2.0",
    "@babel/preset-env": "^7.0.0-beta.56",
    "@babel/preset-react": "^7.0.0-beta.56",
    "babel-eslint": "^10.0.1",
YJ's avatar
YJ committed
52
    "babel-jest": "^24.8.0",
53
    "babel-preset-react-native": "5.0.2",
YJ's avatar
YJ committed
54
    "jest": "^24.8.0",
Marek Kotewicz's avatar
Marek Kotewicz committed
55
    "jest-react-native": "^18.0.0",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
56
    "pre-git": "^3.14.0",
Alexey's avatar
Alexey committed
57
    "prettier": "1.12.1",
58
    "reactotron-react-native": "^2.1.5"
Alexey's avatar
Alexey committed
59
60
61
62
63
  },
  "rnpm": {
    "assets": [
      "./res/fonts"
    ]
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
64
65
  },
  "jest": {
Marek Kotewicz's avatar
Marek Kotewicz committed
66
    "preset": "react-native",
67
68
69
    "setupFiles": [
      "<rootDir>/jest-setup.js"
    ]
70
71
72
73
74
75
76
77
78
79
80
81
82
  },
  "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
83
84
  }
}