-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.08 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
{
"name": "ewm-light-contracts",
"version": "0.3.0",
"description": "ERC721/4907 'Rental' NFT smart contracts for (EWM) light-clients, enabling whitelisted staking, nft allowance, nft delegation and verification rewards on any EVM chain. Deployment scripts, tests, and CI/CD are included.",
"repository": {
"type": "git",
"url": "git+https://github.com/covalenthq/ewm-light-contracts.git"
},
"keywords": [
"light-client",
"nft",
"erc4907",
"cxt",
"auditor",
"bsp",
"decentralized"
],
"author": "[email protected]",
"license": "Apache License",
"bugs": {
"url": "https://github.com/covalenthq/ewm-light-contracts/issues"
},
"homepage": "https://github.com/covalenthq/ewm-light-contracts#readme",
"devDependencies": {
"@eth-optimism/smock": "^1.1.10",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-defender": "^1.8.0",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"chai": "^4.3.4",
"delay": "^5.0.0",
"dotenv": "^16.0.2",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.1",
"hardhat": "^2.9.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.7",
"keccak256": "^1.0.6",
"merkletreejs": "^0.4.0",
"mocha": "^10.2.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint-ci": "^4.0.2",
"solidity-coverage": "^0.8.13"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.0",
"@openzeppelin/contracts-upgradeable": "^4.9.0",
"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.8.0",
"pg": "^8.8.0",
"prompt": "^1.3.0",
"solhint": "^3.3.6",
"solidity-ast": "^0.4.25"
},
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"abi": "npx hardhat export-abi",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c --plugin=prettier-plugin-solidity 'contracts/**/*.sol' ",
"lint": "npm run lint:js && npm run lint:sol",
"format:js": "prettier --write '**/*.{js,md,json}'",
"format:sol": "npx prettier --write 'contracts/**/*.sol' 'contracts/*.sol' ",
"format": "npm run format:js && npm run format:sol",
"coverage": "npx hardhat coverage --testfiles 'test/{unit,integration}/**/*.js'",
"test:controller": "TEST_ENV=true npx hardhat test ./test/controller/unit-tests/*",
"test:claim": "TEST_ENV=true npx hardhat test ./test/claim/unit-tests/*",
"test:allowance": "TEST_ENV=true npx hardhat test ./test/allowance/unit-tests/*",
"test:all": "npm run test:controller && npm run test:claim && npm run test:allowance"
}
}