This repository has been archived by the owner on Nov 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
64 lines (64 loc) · 1.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
{
"name": "@kinecosystem/kin-sdk-v2",
"version": "0.6.0",
"description": "Kin Node SDK",
"author": "Kik Engineering",
"email": "[email protected]",
"license": "MIT",
"exclude": [
"node_modules",
"**/*.spec.ts"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"@grpc/grpc-js": "^1.1.2",
"@kinecosystem/agora-api": "^0.26.1",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.9.1",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/express": "^4.17.7",
"@types/google-protobuf": "^3.7.2",
"@types/lru-cache": "^5.1.0",
"@types/uuid": "^8.3.0",
"bignumber.js": "^9.0.0",
"bs58": "^4.0.1",
"bytebuffer": "^5.0.1",
"express": "^4.17.1",
"google-protobuf": "^3.20.1",
"grpc": "^1.24.3",
"hash.js": "^1.1.7",
"lru-cache": "^6.0.0",
"protobufjs": "^6.10.1",
"stellar-base": "3.0.3",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.5",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"jest": "^26.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.3",
"ts-mockito": "^2.6.1",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint . --ext .ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "./test/jest-env.js"
}
}