-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 2 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
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^2.2.0",
"chai": "^4.3.7",
"delay": "^5.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"hardhat": "^2.22.9",
"hardhat-contract-sizer": "^2.8.0",
"mocha": "^10.2.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"solhint-ci": "^4.0.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"axios": "^0.21.4",
"crypto": "^1.0.1",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"fs": "^0.0.1-security",
"hardhat-abi-exporter": "^2.10.1",
"pg": "^8.12.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"prompt": "^1.3.0",
"solhint": "^5.0.3",
"solidity-ast": "^0.4.46"
},
"scripts": {
"compile": "npx hardhat compile",
"coverage": "TEST_ENV=true npx hardhat coverage",
"abi": "npx hardhat export-abi",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:js:fix": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c --plugin=prettier-plugin-solidity 'contracts/**/*.sol' ",
"lint:sol:fix": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' --config ./.prettierrc.json",
"test:proof-chain": "TEST_ENV=true npx hardhat test ./test/*-proof-chain/unit-tests/*",
"test:staking-contract": "TEST_ENV=true npx hardhat test ./test/cqt-staking/integration-tests/all",
"test:unit": "TEST_ENV=true npx hardhat test ./test/cqt-staking/unit-tests/*"
}
}