-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.91 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "solidity-template",
"version": "1.0.0",
"description": "A template for developing smart contract with solidity and hardhat.",
"main": "index.js",
"scripts": {
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./types ./coverage.json && npm run typechain",
"prepare": "husky install && npx husky add .husky/pre-commit \"npm run lint\"",
"test": "hardhat test",
"coverage": "npx hardhat coverage --solcoverjs ./.solcoverjs --testfiles \"tests/*.ts\"",
"lint:ts": "eslint . --ext .ts --fix ",
"format": "prettier --config .prettierrc . --write",
"lint:sol": "./node_modules/.bin/solhint -f table contracts/**/*.sol --fix",
"lint": "npm run format && npm run lint:sol && npm run lint:ts",
"typechain": "npx hardhat typechain",
"deploy": "npx hardhat run scripts/deploy_all.ts",
"verify": "npx hardhat run scripts/verify.ts"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"nft"
],
"author": "ndtr2000",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.6",
"@nomiclabs/hardhat-solhint": "^3.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"husky": "^8.0.3",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi-reporters": "^1.5.1",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2",
"solhint": "^3.4.0",
"solhint-plugin-prettier": "^0.0.5",
"web3": "^1.8.2",
"dotenv": "^16.0.3",
"hardhat-contract-sizer": "^2.9.0",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"js-big-decimal": "^1.4.1",
"mocha": "10.2.0",
"solidity-coverage": "^0.8.2",
"truffle-assertions": "^0.9.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@openzeppelin/contracts": "4.8.1",
"@openzeppelin/contracts-upgradeable": "4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}