forked from 0xPolygon/edge-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.49 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
{
"name": "v3-contracts",
"description": "smart contract suite for the Polygon POS v3 blockchain",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/v3-contracts.git"
},
"keywords": [
"maticnetwork",
"polygon",
"contracts",
"solidity"
],
"author": "Polygon Technology",
"license": "MIT",
"bugs": {
"url": "https://github.com/maticnetwork/v3-contracts/issues"
},
"homepage": "https://github.com/maticnetwork/v3-contracts#readme",
"scripts": {
"compile": "npx hardhat compile",
"test": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat test --parallel",
"test:gas": "TS_NODE_TRANSPILE_ONLY=1 REPORT_GAS=true npx hardhat test",
"test:types": "npx hardhat test --parallel",
"test:all": "REPORT_GAS=true npx hardhat test",
"lint:sol": "npx solhint --fix \"contracts/**/*.sol\" && npx prettier -w .",
"lint:ts": "npx prettier -w . && npx eslint --fix .",
"lint": "npx solhint --fix \"contracts/**/*.sol\" && npx prettier -w . && npx eslint --fix .",
"prettier": "npx prettier -w .",
"slither": "slither . --filter-paths lib,test,node_modules",
"coverage": "npx hardhat coverage",
"coverage:foundry": "forge coverage --report lcov && genhtml -o forge-coverage lcov.info",
"prepare": "husky install",
"husky:pre-commit": "npm run prettier && git add ."
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"hardhat": "^2.17.2",
"keccak256": "^1.0.6",
"mcl-wasm": "^1.3.0",
"merkletreejs": "^0.3.10"
},
"devDependencies": {
"@defi-wonderland/smock": "^2.3.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@openzeppelin/hardhat-upgrades": "^1.27.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^16.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.2.0",
"ethers": "^5.7.2",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.7.0",
"typescript": "^5.1.6"
}
}