forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.4 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.4 KB
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
82
83
84
85
86
{
"name": "@requestnetwork/request-node",
"version": "0.27.0",
"publishConfig": {
"access": "public"
},
"description": "Basic node for request network v2.",
"keywords": [
"requestnetwork",
"request-node"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/request-node",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"main": "dist/server",
"bin": {
"request-node": "dist/server.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build:watch": "tsc -b tsconfig.build.json --watch",
"test": "jest --runInBand --forceExit",
"test:watch": "yarn test --watch",
"start": "ts-node src/server.ts",
"start:watch": "ts-node-dev src/server.ts",
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"init-ipfs": "node init-ipfs.js"
},
"dependencies": {
"@ethersproject/experimental": "5.5.0",
"@requestnetwork/data-access": "0.27.0",
"@requestnetwork/ethereum-storage": "0.27.0",
"@requestnetwork/smart-contracts": "0.29.0",
"@requestnetwork/thegraph-data-access": "0.35.1",
"@requestnetwork/types": "0.36.0",
"@requestnetwork/utils": "0.36.0",
"@truffle/hdwallet-provider": "1.2.3",
"chalk": "4.1.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"ethers": "5.5.1",
"express": "4.17.3",
"graphql": "15.5.0",
"graphql-request": "3.4.0",
"http-shutdown": "1.2.2",
"http-status-codes": "2.1.4",
"keyv": "4.0.3",
"keyv-file": "0.2.0",
"shelljs": "0.8.5",
"tslib": "2.5.0",
"web3-providers-ws": "1.6.1",
"yargs": "17.6.2"
},
"devDependencies": {
"@types/cors": "2.8.9",
"@types/express": "4.17.17",
"@types/jest": "26.0.13",
"@types/keyv": "3.1.1",
"@types/node": "16.11.7",
"@types/supertest": "2.0.10",
"@types/yargs": "17.0.14",
"jest": "26.4.2",
"shx": "0.3.2",
"source-map-support": "0.5.19",
"supertest": "5.0.0",
"ts-jest": "26.3.0",
"ts-node": "10.9.1",
"ts-node-dev": "1.0.0-pre.62",
"typescript": "4.9.5"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}