-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.72 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
{
"name": "whitelist-smart-contract",
"version": "0.2.1",
"description": "Whitelist smart contract to allow developers to not resign a sell order every time there's a new web3mail dapp being deployed.",
"main": "index.ts",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"deploy": "hardhat run scripts/deploy.ts --network bellecour",
"addResourceToWhitelist": "hardhat run scripts/addResourceToWhitelist.ts --network bellecour",
"removeResourceFromWhitelist": "hardhat run scripts/removeResourceFromWhitelist.ts --network bellecour",
"transferOwnership": "hardhat run scripts/transferOwnership.ts --network bellecour",
"verify": "hardhat verify",
"clean": "hardhat clean",
"lint": "solhint contracts/*.sol && eslint .",
"format": "prettier --plugin=./node_modules/prettier-plugin-solidity/src/index.js --write \"{scripts,test,contracts}/**/*.{ts,sol}\"",
"check-format": "prettier --plugin=./node_modules/prettier-plugin-solidity/src/index.js --check \"{scripts,test,contracts}/**/*.{ts,sol}\"",
"check-types": "tsc"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"hardhat": "^2.22.6",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"dotenv": "^16.4.5"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3"
}
}