-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.18 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
{
"name": "digi-v1",
"version": "0.1.0",
"scripts": {
"chain": "ganache-cli --networkId 50 --accounts 20 -e 10000000000 -l 10000000 -m 'concert load couple harbor equip island argue ramp clarify fence smart topic'",
"seed-graph": "ts-node scripts/seed",
"deploy-contracts": "ts-node scripts/deploy.ts",
"prepare:mainnet": "mustache config/1.json subgraph.template.yaml > subgraph.yaml",
"prepare:sepolia": "mustache config/11155111.json subgraph.template.yaml > subgraph.yaml",
"prepare:mumbai": "mustache config/80001.json subgraph.template.yaml > subgraph.yaml",
"prepare:polygon": "mustache config/137.json subgraph.template.yaml > subgraph.yaml",
"prepare:local": "mustache config/50.json subgraph.template.yaml > subgraph.yaml",
"create": "graph create kimhabork/digi-v1-subgraph --node https://api.thegraph.com/deploy/",
"create-local": "graph create kimhabork/digi-v1-subgraph --node http://139.162.66.128:8020",
"test": "jest",
"codegen": "graph codegen --output-dir types",
"build": "graph build",
"auth": "graph auth --product hosted-service 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",
"deploy": "graph deploy --product hosted-service digi-gallery/digi-v1",
"deploy-local": "graph deploy kimhabork/digi-v1-subgraph --ipfs http://139.162.66.128:5001 --node http://139.162.66.128:8020",
"runAuction": "ts-node scripts/auctionHouse.ts"
},
"devDependencies": {
"@ethersproject/providers": "^5.0.16",
"@fleekhq/fleek-storage-js": "^1.0.9",
"@graphprotocol/graph-cli": "^0.58.0",
"@graphprotocol/graph-ts": "^0.31.0",
"@types/jest": "^26.0.15",
"@types/sjcl": "^1.0.29",
"@zoralabs/core": "^1.0.1",
"@zoralabs/zdk": "^1.2.1",
"axios": "^0.21.0",
"axios-retry": "^3.1.9",
"dotenv": "^8.2.0",
"ethers": "^5.0",
"ganache-cli": "^6.12.2",
"graphql-request": "^3.3.0",
"jest": "^26.6.3",
"jest-serial-runner": "^1.1.0",
"mustache": "^4.1.0",
"random-words": "^1.1.1",
"sjcl": "^1.0.8",
"system-commands": "^1.1.7",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"@zoralabs/auction-house": "1.1.0"
},
"jest": {
"preset": "ts-jest"
}
}