-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.11 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
63
64
65
66
67
68
69
70
{
"name": "contract-playground",
"version": "0.1.0",
"description": "A Hardhat project with TypeScript for playing around with smart contracts.",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy": "npx hardhat run --network polygonMumbai scripts/MyERC721.deploy.ts",
"verify": "npx hardhat run --network polygonMumbai scripts/MyERC721.verify.ts",
"coverage": "yarn build && npx hardhat coverage --temp artifacts --network coverage",
"postinstall": "yarn compile",
"lint": "gts lint && npx hardhat check",
"fix": "gts fix",
"pretest": "yarn compile",
"posttest": "yarn lint",
"node:start": "npx hardhat node",
"node:run": "npx hardhat run --network localhost ",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/erhant/contract-playground.git"
},
"author": "erhant",
"license": "MIT",
"bugs": {
"url": "https://github.com/erhant/contract-playground/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{sol}": [
"solhint --fix",
"prettier --write"
]
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.1.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chai": "^4.3.4",
"dotenv": "^9.0.2",
"eslint": "^8.47.0",
"ethers": "^5.1.4",
"gts": "^3.1.0",
"hardhat": "^2.10.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"solhint": "^3.6.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.1.6"
}
}