-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
98 lines (98 loc) · 3.63 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
90
91
92
93
94
95
96
97
98
{
"name": "health-card-verifier-mobile",
"version": "2.0.2",
"description": "SMART Health Card Verifier",
"scripts": {
"android": "export ENVFILE=.env.development && react-native run-android",
"android:prod": "export ENVFILE=.env.production && react-native run-android",
"android:dev": "export ENVFILE=.env.development && cd android && ./gradlew assembleDevDebug",
"android:devRelease": "export ENVFILE=.env.staging && cd android && ./gradlew assembleDevRelease",
"ios": "react-native run-ios --scheme \"Verifier\"",
"ios:release": "react-native run-ios --scheme \"ReleaseBuild\"",
"ios:qa": "react-native run-ios --scheme \"Verifier-Test\"",
"ios:development": "react-native run-ios --scheme \"Verifier\"",
"start": "react-native start",
"test": "jest -c ./config/jest/jest.config.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lintfile": "eslint",
"lintfile:fix": "eslint --fix",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.16.1",
"@react-native-community/netinfo": "^7.1.9",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"buffer": "^6.0.3",
"deprecated-react-native-prop-types": "^2.3.0",
"i18next": "^21.6.5",
"ieee754": "^1.2.1",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.34",
"pako": "^2.0.4",
"promise.any": "^2.0.4",
"react": "18.1.0",
"react-i18next": "^11.15.3",
"react-native": "^0.70.4",
"react-native-config": "^1.4.5",
"react-native-device-info": "^8.4.5",
"react-native-gesture-handler": "^1.10.3",
"react-native-localize": "^2.1.7",
"react-native-permissions": "^3.1.0",
"react-native-raw-qrcode-scanner": "github:airinterface/react-native-raw-qrcode-scanner#v0.0.3",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.18.2",
"react-native-svg": "^12.1.1",
"react-native-table-component": "^1.2.2",
"react-test-renderer": "18.1.0",
"shc-verifier-plugin": "file:libs/shc-verifier-plugin",
"uuid": "^8.3.2",
"verifier-sdk": "file:libs/verifier-sdk",
"webpack": "^5.66.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/runtime": "^7.16.3",
"@jest/types": "^27.2.5",
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.180",
"@types/react-native": "^0.70.6",
"@types/react-native-table-component": "^1.2.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.27.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"jest": "^26.6.3",
"json-loader": "^0.5.7",
"metro-react-native-babel-preset": "^0.66.2",
"minimist": "^1.2.6",
"publish-aab-google-play": "^1.0.4",
"react-native-svg-transformer": "^0.14.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"@types/react": "^18"
},
"keywords": [
"ssi"
],
"author": "Roman Brazhnyk <roman.b@affinidi.com>",
"contributors": [
"Yuri Fukuda<yuri@thecommonsproject.org>",
"Glenn Gore <glenn.g@affinidi.com>",
"Kishore Bhatia <kishore@affinidi.com>",
"Shankar Pillai <shankar.p@affinidi.com>",
"Kah Seng Lim <kahseng.l@affinidi.com>"
],
"private": true
}