forked from meterio/tokenERC721
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "my-token",
"version": "1.0.0",
"description": "My Token",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "hardhat deploy",
"flatten": "sh flatten.sh"
},
"license": "MIT",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"colors.ts": "^1.0.20",
"decimal.js": "^10.2.1",
"dotenv": "^10.0.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.0.2",
"hardhat": "^2.2.0",
"hardhat-typechain": "^0.3.5",
"mocha": "^6.2.2",
"mocha-chai-jest-snapshot": "^1.1.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"solc": "^0.7.6",
"solhint": "^3.2.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^8.5.4",
"typechain": "^4.0.0",
"typescript": "^3.7.3",
"web3": "^1.6.0"
},
"engines": {
"node": "^14.17.x",
"npm": "^6.14.x"
},
"devDependencies": {
"@openzeppelin/contracts-upgradeable": "^4.3.3",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"erc721a": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18"
}
}