This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
89 lines (89 loc) · 3.04 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
{
"name": "IRMA",
"version": "0.1.0",
"private": true,
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/IRMA.app",
"build": "xcodebuild -project ios/IRMA.xcodeproj -scheme IRMA -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 6"
}
},
"test-runner": "jest",
"runner-config": "e2e/runnerConfig.json"
},
"devDependencies": {
"@babel/cli": "^7.4.5",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.1.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.1.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.11.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-react": "^7.12.1",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.54.1",
"npm-run-all": "^4.1.3",
"react-dom": "16.6.1",
"redux-mock-store": "^1.5.3",
"url-parse": "^1.4.4"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "./enzyme.config.js",
"snapshotSerializers": [
"./node_modules/enzyme-to-json/serializer"
],
"transformIgnorePatterns": [
"/node_modules/(?!native-base)/"
]
},
"scripts": {
"start": "react-native start",
"android": "npm-run-all go:build_check android:run",
"android:run": "gomobile bind -target android -o android/irmagobridge/irmagobridge.aar github.com/privacybydesign/irma_mobile/irmagobridge && react-native run-android",
"ios": "npm-run-all go:build_check ios:run",
"ios:run": "react-native run-ios --simulator \"iPhone 6\"",
"go:build_check": "go build ./irmagobridge",
"test": "jest components store lib",
"test:e2e": "detox test -c ios.sim.debug",
"test:e2e:build": "detox build"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.1",
"i18n-js": "^3.0.11",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"native-base": "2.12.1",
"react": "16.8.3",
"react-native": "^0.59.10",
"react-native-camera-kit": "git://github.com/confiks/react-native-camera-kit.git#f1fb543",
"react-native-gesture-handler": "1.2.1",
"react-native-hyperlink": "^0.0.14",
"react-native-languages": "^3.0.2",
"react-native-reanimated": "^1.2.0",
"react-native-sentry": "^0.43.2",
"react-native-swiper": "^1.5.14",
"react-navigation": "3.12.1",
"react-redux": "^5.1.1",
"react-test-renderer": "16.6.3",
"react-timeout": "^1.1.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"optionalDependencies": {
"fsevents": "^1.2.4"
}
}