-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.21 KB
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
{
"name": "@solareum/erc20-contract",
"description": "Solareum ERC20 token contract",
"version": "1.1.0",
"homepage": "https://www.solareuml1.com",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Solareum-Chain/Solareum-Token.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"directories": [
"abi",
"artifacts",
"contracts",
"test",
"typechain"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@types/lodash": "^4.14.175",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"prettier-plugin-solidity": "^1.0.0-beta.24"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^3.0.4",
"@openzeppelin/test-helpers": "^0.5.16",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"axios": "^0.21.1",
"chai": "^4.4.1",
"ethereumjs-util": "^6.2.0",
"ethers": "^6.11.1",
"hardhat": "^2.21.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-tracer": "^2.8.1",
"mocha": "^10.3.0",
"ncp": "^2.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.0",
"solc": "^0.8.19",
"solidity-coverage": "^0.8.10",
"ts-node": "9",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"scripts": {
"prettier": "prettier --write 'contracts/**/*.sol'",
"clean": "rimraf ./abi/ && rimraf ./artifacts/ && rimraf ./cache/ && rimraf ./typechain/",
"precompile": "yarn clean",
"compile": "hardhat compile",
"pretest": "yarn compile",
"test": "hardhat test",
"prepublishOnly": "yarn test"
},
"license": "MIT"
}