-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.49 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
{
"name": "trxn-status-service",
"version": "1.0.0",
"description": "A recurring service that updates the state of transactions on a blockchain when they are updated externally",
"scripts": {
"generate:typechain": "typechain --target ethers-v5 --out-dir src/generated/contracts src/abi/*.json",
"generate:graphql": "graphql-codegen --config codegen.yaml",
"generate": "npm run generate:graphql && npm run generate:typechain"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.5.10",
"@solana/spl-governance": "^0.0.34",
"@solana/spl-token": "^0.1.8",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/web3.js": "^1.52.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"aws-lambda": "^1.0.7",
"axios": "^1.2.3",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"node-cron": "^3.0.2",
"react": "^18.1.0",
"web3": "^1.8.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.11",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.14",
"@typechain/ethers-v5": "^10.1.0",
"@types/aws-lambda": "^8.10.109",
"serverless-dotenv-plugin": "^4.0.2",
"serverless-offline": "^12.0.4",
"serverless-plugin-typescript": "^2.1.4",
"typechain": "^8.1.0",
"typescript": "^4.9.4"
}
}