-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.56 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
{
"name": "gimly-id-app-sdk",
"version": "0.0.1",
"description": "Typescript library and html/css bundles used to interact a the Gimly ID app to login with SSO and send and receive VCs",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"files": [
"lib/",
"src/"
],
"repository": "[email protected]:Gimly-Blockchain/gimly-id-app-sdk.git",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"prepare": "bob build",
"test": "jest",
"test-with-coverage": "jest --detectOpenHandles --coverage --silent",
"format": "prettier --write \"src/**/*.[jt]s\"",
"lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\""
},
"dependencies": {
"@ethersproject/shims": "^5.4.0",
"@react-native-community/async-storage": "^1.12.1",
"@sphereon/did-uni-client": "^0.2.0",
"@sphereon/rn-ecdsa-secp256k1-signature-2019": "^0.1.2",
"@sphereon/rn-ecdsa-secp256k1-verification-key-2019": "^0.1.2",
"@sphereon/rn-vc-js": "^1.0.1-0",
"DIDComm-js": "https://github.com/decentralized-identity/DIDComm-js.git",
"base58-universal": "^1.0.0",
"eosio-did": "^0.1.2",
"ethers": "^5.4.6",
"ethr-did": "^2.1.4",
"jsonld-signatures": "^9.3.0",
"react-native": "^0.66.1",
"react-native-get-random-values": "^1.7.0",
"react-native-keychain": "^7.0.0",
"tangem-sdk-react-native": "^2.0.1",
"text-encoding-polyfill": "^0.6.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-native": "^4.0.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/react-native": "^0.66.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^27.2.4",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.2",
"prettier": "^2.4.1",
"react-native-builder-bob": "^0.18.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}