-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.85 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
{
"name": "MaticX",
"version": "0.1.0",
"description": "MaticX contracts",
"scripts": {
"prepare": "husky",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"compile": "hardhat compile",
"check": "hardhat check",
"test": "hardhat test --typecheck --bail",
"test:ci": "hardhat test --typecheck --parallel",
"cover": "rimraf coverage && hardhat coverage",
"gas": "REPORT_GAS=true npm run test",
"size": "hardhat size-contracts",
"clean": "hardhat clean && rm -rf coverage cache crytic-{corpus,export} mochaOutput.json testMatrix.json",
"node": "hardhat node",
"analyze": "slitherin .",
"analyze:ci": "slitherin . --skip-clean --ignore-compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stader-labs/maticX"
},
"keywords": [],
"author": "",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/stader-labs/maticX/issues"
},
"homepage": "https://github.com/stader-labs/maticX#readme",
"engines": {
"node": "^20.9.0",
"npm": ">=10.2.0"
},
"type": "commonjs",
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-solhint": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^3.5.0",
"@tsconfig/node20": "^20.1.4",
"@types/eslint__js": "^8.42.3",
"dotenv": "^16.4.5",
"eslint": "^9.7.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.6.4",
"hardhat-contract-sizer": "^2.5.1",
"husky": "^9.1.5",
"joi": "^17.13.3",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solhint-community": "^4.0.0",
"solhint-plugin-prettier": "^0.1.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.14.0"
}
}