This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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
{
"name": "aries-mobile-agent",
"version": "0.0.1",
"license": "Apache-2.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint --ignore-path .gitignore 'src/**/*.+(ts|tsx)'",
"prettier": "prettier '**/*.+(json|md|yml|yaml)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different"
},
"dependencies": {
"@eva-design/eva": "^2.0.0",
"@react-navigation/bottom-tabs": "^5.11.2",
"@react-navigation/native": "^5.8.10",
"@reduxjs/toolkit": "^1.5.0",
"@types/react-native-base64": "^0.1.0",
"@ui-kitten/components": "^5.0.0",
"@ui-kitten/eva-icons": "^5.0.0",
"aries-framework": "file:./aries-framework-v0.0.0.tgz",
"axios": "^0.21.0",
"lottie-ios": "3.1.8",
"lottie-react-native": "^3.5.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-base64": "^0.2.1",
"react-native-camera": "^3.40.0",
"react-native-fs": "^2.16.6",
"react-native-get-random-values": "^1.5.0",
"react-native-permissions": "^3.0.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.16.1",
"react-native-svg": "^12.1.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"rn-indy-sdk": "^0.1.10",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/react": "^16.9.55",
"@types/react-native": "^0.61.23",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-test-renderer": "16.9.0",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native"
}
}