-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 2.98 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
{
"name": "@railgun-community/cookbook",
"version": "2.9.0",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && patch-package && tsc",
"prepare": "npm run build",
"check-circular-deps": "madge --circular .",
"eslint": "eslint src --ext .ts,.tsx --fix",
"lint": "npm run check-circular-deps && npm run eslint && tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
"test-fork-ganache": "env USE_GANACHE=1 npm run test-fork",
"test-fork-hardhat": "env USE_HARDHAT=1 npm run test-fork",
"test-fork": "env DEBUG=railgun*,rpc*,cookbook* NODE_ENV=test RUN_FORK_TESTS=1 npm test",
"tsc-test": "tsc -p tsconfig.test.json && tsc-alias -p tsconfig.test.json",
"compile-test": "npm run clean && npm run tsc-test",
"test-coverage-fork": "env RUN_FORK_TESTS=1 npm run test-coverage",
"test-coverage": "npm run compile-test && c8 mocha",
"test": "npm run compile-test && NODE_ENV=test mocha",
"build-graphql": "graphclient build && rm -rf src/graph/graphql/.graphclient && mv .graphclient src/graph/graphql",
"gen-typechain": "typechain --target ethers-v6 --out-dir ./src/typechain ./src/abi/**/*.json ./src/abi/**/**/*.json"
},
"dependencies": {
"@0x/contract-addresses": "^8.13.0",
"@graphql-mesh/cache-localforage": "^0.7.20",
"@graphql-mesh/cross-helpers": "^0.3.4",
"@graphql-mesh/graphql": "^0.34.16",
"@graphql-mesh/http": "^0.3.28",
"@graphql-mesh/merger-stitching": "^0.18.24",
"@graphql-mesh/runtime": "^0.46.23",
"@graphql-mesh/store": "^0.9.20",
"@graphql-mesh/types": "^0.91.14",
"@graphql-mesh/utils": "^0.43.22",
"@railgun-community/shared-models": "7.5.0",
"axios": "1.7.2",
"custom-uniswap-v2-sdk": "^3.2.0",
"ethers": "6.13.1",
"graphql": "^16.6.0"
},
"devDependencies": {
"@graphprotocol/client-cli": "^2.2.22",
"@railgun-community/wallet": "10.3.0",
"@typechain/ethers-v6": "^0.3.3",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/debug": "^4.1.7",
"@types/leveldown": "^4.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.7.23",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"c8": "^7.12.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"ganache": "^7.8.0",
"hardhat": "^2.14.1",
"leveldown": "^6.1.1",
"madge": "^5.0.1",
"mocha": "^10.2.0",
"patch-package": "^7.0.0",
"prettier": "^2.8.3",
"sinon": "^15.0.1",
"snarkjs": "^0.6.10",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"typechain": "^8.2.0",
"typescript": "^4.8.3"
},
"packageManager": "[email protected]"
}