-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.1 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
{
"name": "@pesabooks/contracts",
"version": "0.0.1",
"description": "",
"author": "",
"license": "UNLICENSED",
"scripts": {
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"start": "npx hardhat node",
"test": "npx hardhat test",
"deploy": "npx hardhat run scripts/deploy.ts --network localhost",
"deploy:mumbai": "npx hardhat run scripts/deploy.ts --network mumbai",
"deploy:polygon": "npx hardhat run scripts/deploy.ts --network polygon",
"update:mumbai": "npx hardhat run scripts/update.ts --network mumbai",
"update:polygon": "npx hardhat run scripts/update.ts --network polygon",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore --ext .js,.ts ."
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.0.2",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"abi-decoder": "^2.4.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.1",
"hardhat": "^2.8.2",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.5.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^5.0.0",
"typescript": "^4.3.2",
"yarn-upgrade-all": "^0.5.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.4.2"
},
"files": [
"artifacts/**",
"typechain/**"
]
}