-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
55 lines (55 loc) · 1.98 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
{
"name": "partybid",
"version": "1.0.0",
"description": "PartyBid contracts",
"main": "",
"scripts": {
"test": "npm run compile && hardhat test",
"deploy:bid": "npm run compile && node ./deploy/partybid/index.js && npm run verify:bid",
"deploy:buy": "npm run compile && node ./deploy/partybuy/index.js && npm run verify:buy",
"deploy:collection": "npm run compile && node ./deploy/collection-party/index.js && npm run verify:collection",
"verify:bid": "hardhat --network rinkeby verify-partybid-contracts",
"verify:buy": "hardhat --network rinkeby verify-partybuy-contracts",
"verify:collection": "hardhat --network rinkeby verify-collection-contracts",
"compile": "hardhat compile",
"prettier": "prettier --write './contracts' ./test",
"lint": "solhint 'contracts/*.sol' && solhint 'contracts/**/*.sol' && eslint test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PartyDAO/partybid"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts"
],
"author": "Anna Carroll",
"license": "MIT",
"bugs": {
"url": "https://github.com/PartyDAO/partybid/issues"
},
"homepage": "https://github.com/PartyDAO/partybid#readme",
"dependencies": {
"@openzeppelin/contracts": "4.1.0",
"@openzeppelin/contracts-upgradeable": "4.1.0",
"@openzeppelin/contracts-upgradeable2": "npm:@openzeppelin/contracts-upgradeable@^3.4.0",
"@openzeppelin/contracts2": "npm:@openzeppelin/contracts@^3.2.0",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.5.3",
"hardhat": "^2.0.8",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solhint-plugin-prettier": "^0.0.5"
}
}