-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.59 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
{
"name": "ethglobal-web3",
"version": "1.0.0",
"description": "ETHGlobal Web3 Hackathon - NFT Import project",
"main": "index.js",
"scripts": {
"dapp-clean": "rm -rf dapp/build",
"dapp-build": "PROD=true rollup -c && mkdir -p dapp/build",
"dapp-dev": "rollup -c",
"dapp-check": "npx prettier-eslint **/*.svelte **/*js **/*.ts **/*.json **/*.html --write",
"start": "sirv dapp",
"sub-clean": "rm -rf thegraph/build thegraph/generated",
"sub-yaml": "npx jq 'limit(1;.[]|select(.chainName==\"${NETWORK:-mumbai}\"))|{chainName,startBlock}' config/networks.json | npx hbs-cli -i thegraph/templates/subgraph.yaml -e yaml -o thegraph",
"sub-yaml-matic": "NETWORK=matic npm run sub-yaml",
"sub-codegen": "cd thegraph && graph codegen",
"sub-build": "cd thegraph && graph build",
"sub-check": "npx prettier-eslint thegraph/**/*js thegraph/**/*.ts thegraph/**/*.json thegraph/**/*.yaml thegraph/**/*.graphql thegraph/**/*.md --write",
"sub-predeploy": "npm run sub-clean && npm run sub-yaml && npm run sub-codegen && npm run sub-build && npm run sub-check",
"sub-predeploy-matic": "NETWORK=matic npm run sub-predeploy",
"sub-deploy": "npm run sub-predeploy && cd thegraph && graph deploy --debug --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ zapaz/eip721-${NETWORK:-mumbai}",
"sub-deploy-matic": "NETWORK=matic npm run sub-deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kredeum/ethglobal-web3.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kredeum/ethglobal-web3/issues"
},
"homepage": "https://github.com/Kredeum/ethglobal-web3#readme",
"devDependencies": {
"@graphprotocol/graph-cli": "^0.20.0",
"@graphprotocol/graph-ts": "^0.20.0",
"@metamask/detect-provider": "^1.2.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"ethers": "^5.2.0",
"hbs-cli": "^1.4.0",
"jq-cli-wrapper": "^1.6.1",
"node-fetch": "^2.6.1",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"prettier-plugin-svelte": "^2.3.0",
"rollup": "^2.48.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^1.0.11",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"svelte": "^3.38.2"
}
}