forked from DeFiFoFum/hardhat-truffle-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.05 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "hardhat-truffle-template",
"version": "0.2.1",
"description": "Use this as a template to start rapid smart contract development using the best of hardhat, truffle and typescript.",
"main": "index.js",
"scripts": {
"build": "tsc",
"prepublish": "yarn build",
"postinstall": "yarn compile",
"test": "hardhat test",
"test:gas": "export REPORT_GAS=true && yarn test",
"coverage": "hardhat coverage",
"test:full": "yarn test:gas && yarn coverage",
"test:ci": "yarn test:full",
"compile": "hardhat compile",
"compile:force": "hardhat compile --force",
"compile:truffle": "truffle compile",
"deploy:dev": "truffle migrate --network development",
"deploy:localhost": "hardhat run --network localhost scripts/deploy.ts",
"deploy:bsc": "truffle migrate --network bsc",
"deploy:bsc-testnet": "truffle migrate --network bsc-testnet",
"deploy:polygon": "truffle migrate --network polygon",
"deploy:polygon-testnet": "truffle migrate --network polygon-testnet",
"verify:bsc": "truffle run verify Greeter --network bsc && truffle run verify Migrations --network bsc",
"verify:bsc-testnet": "truffle run verify Greeter --network bsc-testnet && truffle run verify Migrations --network bsc-testnet",
"verify:polygon": "truffle run verify Greeter --network polygon && truffle run verify Migrations --network polygon",
"verify:polygon-testnet": "truffle run verify Greeter --network polygon-testnet && truffle run verify Migrations --network polygon-testnet",
"clean": "npx hardhat clean",
"testrpc": "npx hardhat node",
"eslint": "npx eslint '**/*.js'",
"eslint:fix": "npx eslint '**/*.js' --fix",
"prettier": "npx prettier '**/*.{json,sol,md}' --check",
"prettier:fix": "npx prettier '**/*.{json,sol,md}' --write",
"solhint": "npx solhint 'contracts/**/*.sol'",
"solhint:fix": "npx solhint 'contracts/**/*.sol' --fix",
"lint": "yarn eslint && yarn prettier && yarn solhint",
"lint:fix": "yarn eslint:fix && yarn prettier:fix && yarn solhint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeFiFoFum/hardhat-truffle-template.git"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"solidity",
"hardhat",
"evm",
"smart",
"contracts"
],
"author": "DeFiFoFum",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeFiFoFum/hardhat-truffle-template/issues"
},
"homepage": "https://github.com/DeFiFoFum/hardhat-truffle-template#readme",
"resolutions": {
"lodash": "^4.17.21",
"glob-parent": "^5.1.2",
"marked": "^4.0.10",
"node-forge": "^1.0.0",
"concat-stream": "^1.5.2",
"braces": "^2.3.1",
"lodash.template": "^4.5.0",
"minimist": "^1.2.6",
"node-fetch": "^2.6.1",
"underscore": "^1.12.1",
"yargs-parser": "^5.0.1",
"axios": "^0.21.1",
"nth-check": "^2.0.1",
"ansi-regex": "^5.0.1",
"got": "^11.8.5",
"async": "^2.6.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.1",
"@openzeppelin/test-helpers": "^0.5.15",
"@truffle/hdwallet-provider": "^2.0.11",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@typechain/truffle-v5": "^8.0.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"truffle": "^5.5.22",
"truffle-plugin-verify": "^0.5.26",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
}
}