-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.12 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
{
"name": "graphcast-registry",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ juanmardefago/graphcast-registry",
"create-local": "graph create --node http://localhost:8020/ juanmardefago/graphcast-registry",
"remove-local": "graph remove --node http://localhost:8020/ juanmardefago/graphcast-registry",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 juanmardefago/graphcast-registry",
"test": "graph test",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"prepare": "husky install"
},
"dependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@graphprotocol/graph-cli": "^0.38.0",
"@graphprotocol/graph-ts": "0.29.1"
},
"devDependencies": {
"husky": "^8.0.0",
"matchstick-as": "^0.5.0",
"standard-version": "^9.5.0"
}
}