forked from exactly/protocol
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 3.46 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@exactly/protocol",
"version": "0.2.15",
"license": "BUSL-1.1",
"homepage": "https://exact.ly",
"repository": "github:exactly/protocol",
"scripts": {
"lint": "run-s --continue-on-error lint:**",
"lint:sol": "solhint '{contracts,scripts,test}/**/*.sol'",
"lint:ts": "tsc",
"lint:es": "eslint --ext .ts,.js,.cjs,.mjs .",
"fix:sol": "prettier -w '{contracts,scripts,test}/**/*.sol'",
"compile": "hardhat compile",
"snapshot": "forge snapshot --no-match-test testFuzz",
"test": "run-s --continue-on-error test:**",
"test:foundry": "forge test",
"test:hardhat": "hardhat test --deploy-fixture",
"coverage": "run-s coverage:**",
"coverage:foundry": "forge coverage --report lcov",
"coverage:hardhat": "hardhat coverage",
"coverage:foundry:snapshot": "forge snapshot --no-match-test testFuzz --check",
"coverage:foundry:fuzzer": "FOUNDRY_PROFILE=production forge test --match-test testFuzz",
"deploy:ethereum": "hardhat --network ethereum deploy",
"deploy:goerli": "hardhat --network goerli deploy",
"postinstall": "run-s --continue-on-error postinstall:** || cd .",
"postinstall:foundry": "forge install",
"postinstall:hardhat": "hardhat compile --force"
},
"files": [
"scripts",
"contracts",
"deployments",
"hardhat.config.ts"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.2",
"@openzeppelin/contracts-upgradeable": "4.9.2",
"solmate": "transmissions11/solmate#v7"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@changesets/types": "^5.2.1",
"@ethersproject/abi": "5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@openzeppelin/upgrades-core": "^1.24.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@safe-global/safe-core-sdk": "^3.3.2",
"@safe-global/safe-core-sdk-types": "^1.9.0",
"@safe-global/safe-ethers-lib": "^1.9.2",
"@safe-global/safe-service-client": "^1.5.2",
"@tenderly/hardhat-tenderly": "^1.6.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/eslint": "^8.21.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"hardhat": "2.13.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.11.25",
"hardhat-gas-reporter": "^1.0.9",
"merkletreejs": "^0.3.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.5"
},
"resolutions": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13"
}
}