|
9 | 9 | ], |
10 | 10 | "scripts": { |
11 | 11 | "dev": "ts-node src/index.ts", |
| 12 | + "dev:schedule": "SCHEDULE_ENABLED=true RUN_ONCE_ON_START=true ts-node src/index.ts", |
| 13 | + "dev:once": "SCHEDULE_ENABLED=false ts-node src/index.ts", |
12 | 14 | "start": "node ./dist/index.js", |
13 | | - "build": "tsc --build --clean", |
| 15 | + "start:schedule": "SCHEDULE_ENABLED=true node ./dist/index.js", |
| 16 | + "start:once": "SCHEDULE_ENABLED=false node ./dist/index.js", |
| 17 | + "build": "tsc", |
14 | 18 | "typechain": "typechain --target=ethers-v5 ./src/abis/**/*.json --out-dir ./src/types/typechain", |
15 | | - "subgraph": "graphql-codegen --config subgraph-config.js", |
16 | 19 | "types": "tsc --project tsconfig.json", |
17 | | - "postinstall": "yarn typechain && yarn subgraph", |
18 | 20 | "test": "echo \"Error: no test specified\" && exit 1" |
19 | 21 | }, |
20 | 22 | "keywords": [], |
21 | 23 | "author": "", |
22 | 24 | "license": "MIT", |
23 | 25 | "dependencies": { |
24 | | - "@ethersproject/address": "^5.7.0", |
25 | | - "@ethersproject/bignumber": "^5.7.0", |
26 | | - "@ethersproject/contracts": "^5.7.0", |
27 | | - "@ethersproject/providers": "^5.7.1", |
28 | | - "@slack/web-api": "^6.7.2", |
29 | | - "dotenv": "^16.0.3", |
30 | | - "ethers": "^5.7.1", |
31 | | - "graphql": "^16.6.0", |
32 | | - "graphql-request": "^5.0.0", |
33 | | - "graphql-tag": "^2.12.6" |
| 26 | + "@ethersproject/address": "5.7.0", |
| 27 | + "@ethersproject/bignumber": "5.7.0", |
| 28 | + "@ethersproject/contracts": "5.7.0", |
| 29 | + "@ethersproject/providers": "5.7.1", |
| 30 | + "@slack/web-api": "6.7.2", |
| 31 | + "dotenv": "17.2.3", |
| 32 | + "ethers": "5.7.1", |
| 33 | + "graphql": "16.6.0", |
| 34 | + "graphql-request": "5.2.0", |
| 35 | + "graphql-tag": "2.12.6", |
| 36 | + "node-cron": "3.0.3" |
34 | 37 | }, |
35 | 38 | "devDependencies": { |
36 | | - "@graphql-codegen/cli": "^2.13.6", |
37 | | - "@graphql-codegen/introspection": "^2.2.1", |
38 | | - "@graphql-codegen/typescript": "^2.7.4", |
39 | | - "@graphql-codegen/typescript-graphql-request": "^4.5.6", |
40 | | - "@graphql-codegen/typescript-operations": "^2.5.4", |
41 | | - "@typechain/ethers-v5": "^10.1.0", |
42 | | - "@types/node": "^18.8.3", |
43 | | - "ts-node": "^10.9.1", |
44 | | - "typechain": "^8.1.0", |
45 | | - "typescript": "^4.8.4", |
46 | | - "typescript-graphql-request": "^4.4.6" |
| 39 | + "@typechain/ethers-v5": "11.1.2", |
| 40 | + "@types/node": "25.0.10", |
| 41 | + "@types/node-cron": "3.0.11", |
| 42 | + "@types/node-fetch": "2.6.13", |
| 43 | + "ts-node": "10.9.2", |
| 44 | + "typechain": "8.1.0", |
| 45 | + "typescript": "4.8.4" |
47 | 46 | } |
48 | 47 | } |
0 commit comments