-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
94 lines (94 loc) · 3.58 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
{
"name": "@exactly/protocol",
"version": "0.2.19",
"license": "BUSL-1.1",
"homepage": "https://exact.ly",
"repository": "github:exactly/protocol",
"scripts": {
"lint": "pnpm run --aggregate-output --no-bail /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": "FOUNDRY_PROFILE=snapshot forge snapshot --no-match-contract Protocol",
"test": "pnpm run --aggregate-output /test:/",
"test:foundry": "forge test",
"test:hardhat": "hardhat test --deploy-fixture",
"coverage": "pnpm coverage:snapshot && pnpm coverage:foundry && pnpm coverage:hardhat && pnpm coverage:fuzzer",
"coverage:foundry": "forge coverage --report lcov --no-match-contract Protocol",
"coverage:hardhat": "hardhat coverage",
"coverage:snapshot": "FOUNDRY_PROFILE=snapshot forge snapshot --check --no-match-contract Protocol",
"coverage:fuzzer": "FOUNDRY_PROFILE=production forge test --no-match-contract Protocol",
"deploy:ethereum": "hardhat --network ethereum deploy",
"deploy:op-sepolia": "hardhat --network op-sepolia deploy",
"prepare": "pnpm run --aggregate-output --no-bail /prepare:/ || true",
"prepare:foundry": "forge install",
"prepare:hardhat": "hardhat compile --force"
},
"files": [
"scripts",
"contracts",
"deployments",
"hardhat.config.ts"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@openzeppelin/contracts-v4": "npm:@openzeppelin/contracts@^4.9.6",
"@openzeppelin/contracts-upgradeable-v4": "npm:@openzeppelin/contracts-upgradeable@^4.9.6",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/contracts": "^5.0.2",
"solmate": "transmissions11/solmate#v7"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@changesets/types": "^6.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"@openzeppelin/upgrades-core": "^1.37.0",
"@safe-global/api-kit": "^2.4.5",
"@safe-global/protocol-kit": "^4.1.0",
"@safe-global/safe-core-sdk-types": "^5.1.0",
"@tenderly/hardhat-tenderly": "^2.3.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.19",
"@types/eslint": "^8.56.12",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"ethers": "^6.13.2",
"hardhat": "~2.22.10",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-gas-reporter": "^2.2.1",
"hardhat-tracer": "^3.1.0",
"merkletreejs": "^0.4.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.5.4"
}
}