-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 938 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 938 Bytes
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
{
"name": "stability-dao",
"license": "UNLICENSED",
"scripts": {
"prepare": "node template-generator.ts",
"prepare:liquidation": "node template-generator.liquidation.ts",
"clean": "graph clean",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ stability-dao",
"create-local": "graph create --node http://localhost:8020/ stability-dao",
"remove-local": "graph remove --node http://localhost:8020/ stability-dao",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 stability-dao",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.62.0",
"@graphprotocol/graph-ts": "0.30.0",
"@types/node": "^22.9.0",
"mustache": "^4.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}