-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "chain-backend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"n": "n $(cat .node-version)",
"rsync": "rsync -urtvL --delete -e ssh --exclude=.env.local --exclude=node_modules --exclude=package-lock.json --exclude=.git ./",
"test": "mocha --recursive --timeout 20000 'test/**/*.spec.js'"
},
"dependencies": {
"@ethersproject/providers": "https://gitpkg.now.sh/derivable-labs/ethers.js/packages/providers",
"@trop/gear": "^0.4.2",
"assisted-json-rpc-provider": "^2.0.2",
"bsc_util": "^0.4.0",
"caching-map": "^1.0.2",
"ethers": "^5.1.4",
"json-stable-stringify": "^1.0.1",
"jsondiffpatch": "^0.4.1",
"mongoose": "^5.7.6",
"node-fetch": "2"
},
"devDependencies": {
"mocha": "^6.2.2"
},
"description": "A library to retrieve and strore data from EVM network",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derivable-labs/chain-backend.git"
},
"author": "Derivable Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/derivable-labs/chain-backend/issues"
},
"homepage": "https://github.com/derivable-labs/chain-backend#readme"
}