-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 915 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
24
25
26
27
28
29
30
31
{
"name": "zeroalpha-contracts",
"version": "0.9.0",
"license": "MIT",
"scripts": {
"node": "npx buidler node",
"init_contracts": "npx oz init",
"add_contracts": "npx oz add ERC721 && npx oz add ArtSteward",
"deploy": "npx oz deploy",
"test": "npx buidler test",
"compile": "npx buidler compile",
"flatten": "mkdir -p flats && scripts/make-flats.sh"
},
"devDependencies": {
"@openzeppelin/cli": "^2.8.2",
"@poanet/solidity-flattener": "^3.0.6",
"@truffle/hdwallet-provider": "^1.0.35",
"chai": "^4.2.0",
"ethereum-waffle": "^2.5.1",
"ethers": "^4.0.47",
"web3": "^1.3.0",
"@nomiclabs/buidler": "^1.3.3",
"@nomiclabs/buidler-ethers": "^1.3.3",
"@nomiclabs/buidler-waffle": "^1.3.3",
"@nomiclabs/buidler-web3": "^1.3.4"
},
"dependencies": {
"@openzeppelin/test-helpers": "^0.5.5",
"@resolver-engine/core": "^0.3.3"
}
}