-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
126 lines (126 loc) · 6.75 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ledgity-yield",
"version": "2.2.0",
"private": true,
"workspaces": [
"frontend"
],
"type": "commonjs",
"engines": {
"node": ">=16.0.0",
"yarn": "^1.22.0"
},
"scripts": {
"cc:test": "forge test -vvv --use 0.8.18",
"cc:coverage": "bash scripts/coverage.sh",
"cc:size": "hardhat size-contracts",
"cc:slither:report": "slither . --compile-force-framework hardhat --hardhat-artifacts-directory ./contracts/hardhat/artifacts/ --checklist > report.md ",
"cc:slither:triage": "slither . --compile-force-framework hardhat --hardhat-artifacts-directory ./contracts/hardhat/artifacts/ --triage-mode",
"cc:slither:pausable": "slither . --compile-force-framework hardhat --hardhat-artifacts-directory ./contracts/hardhat/artifacts/ --print not-pausable",
"cc:node": "hardhat node --hostname 0.0.0.0",
"cc:compile": "hardhat compile && hardhat export --export-all contracts/deployments.json && node scripts/extract-abis.mjs && wagmi generate",
"graph:client": "graphclient build",
"graph:node": "cd subgraph/local-node && docker-compose up",
"graph:local-gen": "cd subgraph && graph codegen ./localhost-subgraph.yaml && graph build ./localhost-subgraph.yaml ",
"graph:local-create": "graph create --node http://0.0.0.0:8020/ LedgityLabs/LedgityYield",
"graph:local-deploy": "graph deploy --node http://0.0.0.0:8020/ --ipfs http://0.0.0.0:5001 LedgityLabs/LedgityYield ./subgraph/localhost-subgraph.yaml",
"graph:local-remove": "graph remove --node http://0.0.0.0:8020/ LedgityLabs/LedgityYield",
"graph:linea-gen": "cd subgraph && graph codegen ./linea-subgraph.yaml && graph build ./linea-subgraph.yaml",
"graph:linea-create": "graph create --node https://graph-deploy.linea.build/ LedgityLabs/LedgityYield",
"graph:linea-deploy": "graph deploy --node https://graph-deploy.linea.build/ --ipfs https://graph-ipfs.linea.build LedgityLabs/LedgityYield ./subgraph/linea-subgraph.yaml",
"graph:linea-remove": "graph remove --node https://graph-deploy.linea.build/ LedgityLabs/LedgityYield",
"graph:OKX_X1_Testnet-remove": "graph remove --node https://www.okx.com/api/v1/x1-testnet/index/subgraphs/name/LedgityLabs/LedgityYield/",
"graph:generate": "cd subgraph && graph codegen ./subgraph.yaml",
"graph:build": "cd subgraph && graph build ./subgraph.yaml",
"graph:prepare-eth-sepolia": "cd subgraph && mustache ./config/ethereum-sepolia.json ./subgraph.template.yaml > ./subgraph.yaml",
"graph:deploy-eth-sepolia": "cd subgraph && graph deploy --node https://api.studio.thegraph.com/deploy/ ledgity-sepolia ./subgraph.yaml",
"graph:prepare-okx-mainnet": "cd subgraph && mustache ./config/okx-mainnet.json ./subgraph.template.yaml > ./subgraph.yaml",
"graph:deploy-okx-mainnet": "cd subgraph && graph deploy --node https://api.studio.thegraph.com/deploy/ ledgity-okxmain ./subgraph.yaml",
"graph:prepare-eth-mainnet": "cd subgraph && mustache ./config/ethereum-mainnet.json ./subgraph.template.yaml > ./subgraph.yaml",
"graph:deploy-eth-mainnet": "cd subgraph && graph deploy --node https://api.studio.thegraph.com/deploy/ ledgity-eth-mainnet ./subgraph.yaml",
"graph:prepare-arbi-mainnet": "cd subgraph && mustache ./config/arbitrum-mainnet.json ./subgraph.template.yaml > ./subgraph.yaml",
"graph:deploy-arbi-mainnet": "cd subgraph && graph deploy ledgity-arbi-main --version-label v0.0.1 ./subgraph.yaml --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key aMpXqvUPBw0RF --ipfs https://ipfs.satsuma.xyz",
"graph:prepare-base-sepolia": "cd subgraph && mustache ./config/base-sepolia.json ./subgraph.template.yaml > ./subgraph.yaml",
"graph:deploy-base-sepolia": "cd subgraph && graph deploy --node https://api.studio.thegraph.com/deploy/ ldystaking-subgraph ./subgraph.yaml",
"graph:prepare-arbi-sepolia": "cd subgraph && mustache ./config/arbitrum-sepolia.json ./subgraph.template.yaml > ./subgraph.yaml",
"graph:deploy-arbi-sepolia": "cd subgraph && graph deploy ledgity-arbi-sepolia --version-label v0.0.1 ./subgraph.yaml --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key 4SaXil3Dh3K9O --ipfs https://ipfs.satsuma.xyz",
"prisma:generate": "prisma generate",
"build:frontend": "yarn workspace ledgity-yield-frontend build",
"build": "yarn prisma:generate && yarn build:frontend",
"dev": "yarn workspace ledgity-yield-frontend dev"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.11",
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.1.6",
"@graphprotocol/client-cli": "^3.0.7",
"@graphprotocol/graph-cli": "^0.89.0",
"@graphprotocol/graph-ts": "^0.35.1",
"@graphql-mesh/cache-localforage": "^0.102.7",
"@graphql-mesh/cli": "^0.96.6",
"@graphql-mesh/cross-helpers": "^0.4.7",
"@graphql-mesh/graphql": "^0.102.8",
"@graphql-mesh/http": "^0.103.8",
"@graphql-mesh/runtime": "^0.103.8",
"@graphql-mesh/store": "^0.102.7",
"@graphql-mesh/transform-prefix": "^0.102.7",
"@graphql-mesh/types": "^0.102.7",
"@graphql-mesh/utils": "^0.102.7",
"@graphql-tools/delegate": "^9.0.32",
"@graphql-tools/merge": "^8.3.14",
"@graphql-tools/utils": "^10.5.5",
"@graphql-tools/wrap": "^9.4.2",
"@lifi/widget": "^3.12.1",
"@okxweb3/hardhat-explorer-verify": "^1.6.4",
"@prisma/client": "^5.7.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.0.0",
"graphql-yoga": "^5.7.0",
"hardhat": "^2.22.1",
"mustache": "^4.2.0",
"solady": "^0.0.235",
"tslib": "^2.4.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2",
"@openzeppelin/contracts": "4.9.0",
"@openzeppelin/contracts-upgradeable": "4.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.7.9",
"@wagmi/cli": "^2",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.45",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"prisma": "^5.7.0",
"semantic-release": "^23",
"typescript": "^5.6.3"
},
"resolutions": {
"@graphql-mesh/types": "^0.102.7",
"@graphql-mesh/utils": "^0.102.7",
"@graphql-mesh/store": "^0.102.7",
"@graphql-mesh/cross-helpers": "^0.4.7",
"@graphql-tools/utils": "^10.5.5",
"@graphql-mesh/transform-prefix": "^0.102.7",
"@graphql-mesh/runtime": "^0.103.8",
"@graphql-mesh/graphql": "^0.102.8",
"graphql": "^16.8.1",
"@envelop/core": "^5.0.0",
"node-libcurl": "3.0.0"
},
"trustedDependencies": [
"sharp"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}