forked from valve-finance/erc20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 951 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
23
{
"name": "defi-allowances",
"version": "1.0.0",
"repository": "https://github.com/andreujuanc/erc20-allowances",
"license": "MIT",
"scripts": {
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"codegen": "graph -r dotenv/config codegen --output-dir src/types/",
"build": "graph build --ipfs https://api.staging.thegraph.com/ipfs/ ",
"deploy": "dotenv -- cross-var \"graph deploy %SLUG% --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --access-token %ACCESS_TOKEN%\"",
"prettier": "./node_modules/.bin/prettier —-write '**/*.ts'",
"launch": "npm run prepare:mainnet && npm run codegen && npm run build && npm run deploy"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.23.2",
"@graphprotocol/graph-ts": "^0.23.1"
},
"dependencies": {
"cross-var": "^1.1.0",
"dotenv-cli": "^4.0.0",
"mustache": "^4.2.0"
}
}