-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 943 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@component/subgraph-alarm-clock",
"version": "0.1.0",
"description": "Time triggered events on the graph protocol",
"main": "index.ts",
"scripts": {
"pre-codegen": "node scripts/copyFiles.js && node scripts/alarmClock/alarmClock.js",
"codegen": "yarn run pre-codegen && graph codegen && yarn run post-codegen",
"post-codegen": "node scripts/addEnsures.js",
"build": "graph build",
"create-local": "graph create --node http://localhost:8020/ subgraph-alarm-clock",
"remove-local": "graph remove --node http://localhost:8020/ subgraph-alarm-clock",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 subgraph-alarm-clock",
"pre-install": "./scripts/preinstall.sh"
},
"author": "Mattias Lightstone - [email protected]",
"license": "ISC",
"dependencies": {
"@graphprotocol/graph-cli": "0.25.1",
"@graphprotocol/graph-ts": "0.24.1"
}
}