forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.25 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
{
"name": "@requestnetwork/payment-detection",
"version": "0.36.0",
"publishConfig": {
"access": "public"
},
"description": "Payment detection using ethers.",
"keywords": [
"requestnetwork"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/payment-detection#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "yarn codegen",
"build": "tsc -b tsconfig.build.json",
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo **/generated",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"prepare": "yarn run build",
"test": "jest --runInBand",
"test:watch": "yarn test --watch",
"codegen": "graphql-codegen --config codegen.yml ; graphql-codegen --config codegen-superfluid.yml; graphql-codegen --config codegen-near.yml"
},
"dependencies": {
"@requestnetwork/currency": "0.9.0",
"@requestnetwork/smart-contracts": "0.29.0",
"@requestnetwork/types": "0.36.0",
"@requestnetwork/utils": "0.36.0",
"axios": "0.27.2",
"ethers": "5.5.1",
"graphql": "15.5.1",
"graphql-request": "3.4.0",
"graphql-tag": "2.12.4",
"lodash": "4.17.21",
"satoshi-bitcoin": "1.0.4",
"tslib": "2.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.5",
"@graphql-codegen/typescript": "1.22.1",
"@graphql-codegen/typescript-document-nodes": "1.17.12",
"@graphql-codegen/typescript-graphql-request": "3.2.1",
"@graphql-codegen/typescript-operations": "1.18.0",
"@graphql-codegen/typescript-resolvers": "1.19.2",
"@jridgewell/gen-mapping": "0.3.2",
"@requestnetwork/advanced-logic": "0.35.0",
"@types/jest": "26.0.13",
"@types/lodash": "4.14.161",
"jest": "26.4.2",
"nyc": "15.1.0",
"shx": "0.3.2",
"source-map-support": "0.5.19",
"ts-jest": "26.3.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}