forked from darkforest-eth/eth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 3.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "eth",
"version": "6.7.29",
"private": true,
"license": "GPL-3.0",
"author": "0xPARC <[email protected]>",
"main": "index.js",
"devDependencies": {
"@darkforest_eth/contracts": "6.7.29",
"@darkforest_eth/hashing": "6.7.29",
"@darkforest_eth/settings": "6.7.29",
"@darkforest_eth/snarks": "6.7.29",
"@darkforest_eth/types": "6.7.29",
"@darkforest_eth/whitelist": "6.7.29",
"@graphprotocol/graph-cli": "0.24.1",
"@graphprotocol/graph-ts": "0.24.1",
"@iarna/toml": "^2.2.5",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@solidstate/contracts": "0.0.29",
"@solidstate/hardhat-4byte-uploader": "^1.0.2",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.14",
"@types/cli-table": "^0.3.0",
"@types/dockerode": "3.2.3",
"@types/lodash": "^4.14.160",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"big-integer": "^1.6.48",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"cli-table": "^0.3.11",
"cosmiconfig": "^7.0.0",
"decoders": "^1.25.5",
"del-cli": "^4.0.1",
"dockerode": "^3.2.1",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.5.1",
"hardhat": "^2.6.8",
"hardhat-abi-exporter": "^2.4.0",
"hardhat-circom": "^1.1.0",
"hardhat-contract-sizer": "^2.3.0",
"hardhat-diamond-abi": "^2.0.0",
"lodash": "^4.17.15",
"mocha": "^8.2.1",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"resolve-package-path": "^4.0.3",
"snarkjs": "^0.3.60",
"solhint": "^3.0.0",
"ts-dedent": "^2.0.0",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^5.0.1",
"typescript": "4.5.x",
"wait-on": "^6.0.0"
},
"resolutions": {
"ganache-core": "npm:ganache@^7.0.3"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "hardhat test && yarn subgraph:template:dev",
"lint": "eslint .",
"format": "prettier --write .",
"hardhat:node": "hardhat node --hostname 0.0.0.0",
"hardhat:dev": "hardhat --network localhost",
"hardhat:prod": "hardhat --network xdai",
"hardhat:mainnet": "hardhat --network mainnet",
"compile": "hardhat compile",
"circom:prod": "hardhat circom --verbose",
"circom:dev": "hardhat circom --deterministic --verbose",
"subgraph:template:dev": "yarn hardhat:dev subgraph:codegen",
"subgraph:template:prod": "yarn hardhat:prod subgraph:codegen",
"subgraph:deploy:dev": "yarn hardhat:dev subgraph:deploy --name df",
"subgraph:deploy:prod": "cd subgraph && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/",
"clean": "del-cli artifacts cache subgraph/build node_modules tsconfig.ref.tsbuildinfo",
"wait:node": "wait-on tcp:8545",
"deploy:contracts": "hardhat --network localhost deploy",
"hardhat:deploy": "run-s wait:node \"deploy:contracts {@}\" --",
"start": "run-p hardhat:node \"hardhat:deploy {@}\" --"
}
}