-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
90 lines (90 loc) · 2.55 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
82
83
84
85
86
87
88
89
90
{
"name": "@requestnetwork/request-node",
"version": "0.44.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": ">=18.0.0"
},
"main": "dist/bin",
"bin": {
"request-node": "dist/bin.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/bin.ts",
"start:watch": "ts-node-dev src/bin.ts",
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"init-ipfs": "node init-ipfs.js"
},
"dependencies": {
"@ethersproject/experimental": "5.7.0",
"@lit-protocol/constants": "7.0.5",
"@lit-protocol/contracts": "0.0.86",
"@lit-protocol/contracts-sdk": "7.0.5",
"@lit-protocol/lit-node-client": "7.0.5",
"@lit-protocol/types": "7.0.5",
"@requestnetwork/currency": "0.27.0",
"@requestnetwork/data-access": "0.44.0",
"@requestnetwork/ethereum-storage": "0.44.0",
"@requestnetwork/smart-contracts": "0.47.0",
"@requestnetwork/thegraph-data-access": "0.50.0",
"@requestnetwork/types": "0.53.0",
"@requestnetwork/utils": "0.53.0",
"chalk": "4.1.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"ethers": "5.7.2",
"express": "4.21.0",
"graphql": "16.8.1",
"graphql-request": "6.1.0",
"http-shutdown": "1.2.2",
"http-status-codes": "2.1.4",
"morgan": "1.10.0",
"shelljs": "0.8.5",
"tslib": "2.5.0",
"yargs": "17.6.2"
},
"devDependencies": {
"@types/cors": "2.8.9",
"@types/express": "4.17.17",
"@types/jest": "29.5.6",
"@types/morgan": "1.9.9",
"@types/node": "18.11.9",
"@types/supertest": "2.0.10",
"@types/yargs": "17.0.14",
"jest": "29.5.0",
"jest-junit": "16.0.0",
"msw": "2.0.6",
"source-map-support": "0.5.19",
"supertest": "5.0.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"ts-node-dev": "1.0.0-pre.62",
"typescript": "5.1.3"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}