-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "fast-near",
"version": "0.5.2",
"description": "Fastest RPC for NEAR Protocol",
"repository": "https://github.com/vgrichina/fast-near",
"license": "MIT",
"bin": {
"fast-near": "bin/fast-near"
},
"main": "app.js",
"files": [
"bin",
"scripts",
"source",
"storage",
"utils",
"*.js"
],
"dependencies": {
"@aws-sdk/credential-providers": "^3.535.0",
"@koa/cors": "^3.1.0",
"@noble/ed25519": "1.7.3",
"@noble/hashes": "^1.5.0",
"@noble/secp256k1": "1.7.1",
"@smithy/node-http-handler": "^2.2.2",
"borsh": "^0.6.0",
"cacheable-lookup": "6",
"compressing": "^1.10.0",
"debug": "^4.3.2",
"koa": "^2.13.4",
"koa-router": "^12.0.1",
"lmdb": "^2.7.6",
"lru-cache": "^6.0.0",
"minimatch": "^5.1.0",
"near-lake-framework": "^1.0.3",
"node-fetch": "2",
"raw-body": "^2.4.2",
"redis": "^3.1.2",
"tar-stream": "^3.1.7",
"yargs": "^17.5.0"
},
"scripts": {
"dev": "nodemon bin/fast-near",
"start": "node bin/fast-near",
"test": "set -o pipefail; tape test/*.test.js | tap-diff",
"test:e2e": "test/e2e.sh",
"test:all": "yarn test && yarn test:e2e",
"test:all:lmdb": "FAST_NEAR_STORAGE_TYPE=lmdb yarn test:all",
"test:e2e:lake": "FAST_NEAR_STORAGE_TYPE=lake yarn test:e2e",
"test:ci": "yarn test:all && yarn test:all:lmdb && yarn test:e2e:lake",
"coverage": "npx nyc yarn test:all"
},
"devDependencies": {
"near-cli": "^3.4.2",
"nodemon": "^2.0.14",
"supertest": "^6.2.3",
"tap-diff": "^0.1.1",
"tape": "^5.5.3"
}
}