-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.87 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
{
"name": "@etherisc/gif-next",
"version": "3.0.0",
"description": "This is the repository for the next version of the Generic Insurance Framework (GIF) smart contracts. ",
"main": "index.js",
"scripts": {
"build": "hh compile",
"test": "hh test",
"ptest": "hh test --parallel",
"test-with-gas": "REPORT_GAS=true hh test",
"coverage": "hh coverage",
"styleFix": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'test_forge/**/*.t.sol'",
"styleCheck": "prettier --check --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'test_forge/**/*.t.sol'",
"lint": "solhint 'contracts/**/*.sol' 'test_forge/**/*.t.sol'",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/etherisc/gif-next.git"
},
"author": "Etherisc Gmbh",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/etherisc/gif-next/issues"
},
"files": [
"contracts/**/*sol",
"artifacts/contracts/**/*.json"
],
"homepage": "https://github.com/etherisc/gif-next#readme",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"antlr4ng-cli": "^2.0.0",
"dotenv": "^16.3.1",
"eslint": "^9.9.1",
"hardhat": "^2.17.2",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"typescript": "^5"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@openzeppelin/upgrades-core": "^1.34.1",
"abi-coder": "^5.0.0",
"antlr4ng": "^3.0.4",
"ethers": "^6.7.1",
"ethers-decode-error": "^2.1.3",
"simple-git": "^3.27.0",
"solidity-docgen": "^0.6.0-beta.36",
"winston": "^3.10.0"
}
}