forked from KaladinStormBlessed16/RacksProjectManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.7 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
{
"name": "racks_project_manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write . && prettier -w ./**/*.sol",
"slither": "slither . --solc-remaps '@openzeppelin=node_modules/@openzeppelin --exclude naming-convention,external-function,low-level-calls"
},
"keywords": [],
"author": "Kaladin_Stormblessed",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"chai": "^4.3.6",
"ethers": "^5.7.0",
"hardhat": "^2.9.9",
"hardhat-deploy": "^0.11.0",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.0"
},
"overrides": {
"@nomicfoundation/hardhat-chai-matchers": {
"@nomiclabs/hardhat-ethers": "$@nomiclabs/hardhat-ethers"
},
"@openzeppelin/hardhat-upgrades": {
"@nomiclabs/hardhat-ethers": "$@nomiclabs/hardhat-ethers"
}
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"dotenv": "^16.0.0",
"fs": "^0.0.1-security",
"hardhat-contract-sizer": "^2.6.1",
"path": "^0.12.7",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.1.0"
}
}