-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 972 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
32
{
"name": "contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "node scripts/post_install.js",
"build": "hardhat compile",
"test": "hardhat test",
"test:token": "hardhat test test/bosontoken-test.js",
"test:escrow": "hardhat test test/bosonescrow-test.js",
"test:market": "hardhat test test/bosonmarket-test.js",
"deploy": "hardhat run scripts/deploy.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.3.1",
"hardhat": "2.4.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-docgen": "^1.1.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"dotenv": "^10.0.0"
}
}