-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.76 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
{
"name": "Takey",
"version": "1.1.0",
"description": "Two-factor authorization codes manager application",
"scripts": {
"lint": "eslint app",
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"build:ios": "react-native run-ios --configuration Release",
"prebuild:android": "./scripts/prebuild-android.sh",
"build:android": "cd android && ./gradlew clean && ./gradlew assembleRelease",
"test": "jest"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jsmartx/Takey.git"
},
"keywords": [
"Takey",
"2fa",
"authorization codes",
"scan barcode"
],
"author": "JSmartX Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsmartx/Takey/issues"
},
"homepage": "https://github.com/jsmartx/Takey#readme",
"dependencies": {
"otplib": "^10.0.1",
"prop-types": "^15.6.2",
"react": "16.7.0",
"react-native": "0.57.8",
"react-native-camera": "^1.8.0",
"react-native-gesture-handler": "^1.0.10",
"react-native-swipeout": "^2.3.6",
"react-navigation": "^3.0.9",
"react-redux": "^6.0.0",
"redux-persist": "^5.10.0",
"url-parse": "^1.4.4",
"yax": "^0.4.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.51.1",
"pre-commit": "^1.2.2",
"react-test-renderer": "16.7.0"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"assets/fonts"
]
}
}