-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 4.64 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 4.64 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
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
{
"name": "hardhat-project",
"scripts": {
"lint": "npx eslint . --fix",
"typecheck": "npm run compile && ./node_modules/typescript/bin/tsc --project ./tsconfig.json --noEmit",
"test": "npm run compile && npx dotenv -e .env.test.local -- npx jest test --verbose --testTimeout 20000",
"test:jsonreport": "npm run test -- --json --outputFile=report.json",
"script": "npx dotenv -e .env.local -- npx tsx",
"setkey": "npx hardhat vars set PRIVATE_KEY",
"compile": "npx hardhat compile --show-stack-traces",
"compile:build": "npm run compile && npm run build:api:all",
"verify:tdly": "npx hardhat verifyViaTenderly --network",
"deploybuilders": "npm run compile && npx hardhat deployBuilderNFTSeasonOne --network",
"deploybuilders:pres02": "npm run compile && npx hardhat deployBuilderNFTPreSeason02 --network",
"deploybuilders:starterpack": "npm run compile && npx hardhat deployScoutGameStarterPackNFT --network",
"scout:deploy:season01": "npm run compile && chmod +x ./scripts/shell/deployseason01.sh && ./scripts/shell/deployseason01.sh",
"scout:verify:season01": "npm run compile && npx hardhat verifyContracts --network",
"scout:launch:season01": "npx hardhat prepareScoutGameLaunchSafeTransaction --network",
"deploy:create2deployer": "npx hardhat deployFoundryCreate2Deployer --network",
"proxy:update": "npx hardhat updateProxyImplementation --network",
"scout:deploy:buildernft": "npx hardhat deployScoutProtocolBuilderNFT --network",
"scout:deploy:starterpack": "npx hardhat deployScoutProtocolBuilderStarterPackNFT --network",
"scout:deploy:erc20": "npx hardhat deployDeterministicScoutGameERC20 --network",
"scout:deploy:easresolver": "npx hardhat deployEASResolver --network",
"scout:deploy:protocol": "npx hardhat deployScoutProtocol --network",
"scout:buildernft": "npx hardhat interactScoutProtocolBuilderNFT --network",
"scout:deploy:vesting": "npx hardhat deployVesting --network",
"scout:deploy:airdrop": "npx dotenv -e .env -- npx tsx scripts/deploy/deployAirdrop.ts",
"scout:protocol": "npx hardhat interactProtocol --network",
"scout:erc20": "npx hardhat interactScoutTokenERC20Token --network",
"scout:easresolver": "npx hardhat interactProtocolEASResolver --network",
"scout:vesting": "npx hardhat interactSablierVesting --network",
"buildernft": "npx hardhat interactBuilderNFT --network",
"buildernft:starterpack": "npx hardhat interactBuilderNFTStarterPack --network",
"buildernft:season02": "npx hardhat interactBuilderNFTPreSeason02 --network",
"build:api:all": "npx tsx scripts/utility/generateAllApiClients.ts && npx eslint lib/apiClients --fix",
"build:api": "npx tsx scripts/utility/generateApiClient.ts",
"superchain:bridge": "npx hardhat interactSuperchainBridge --network",
"coverage": "SOLIDITY_COVERAGE=true TS_NODE_TRANSPILE_ONLY=true npx hardhat coverage --sources protocol"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-viem": "^2.0.6",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.13.1",
"hardhat": "^2.22.18",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solady": "^0.0.177",
"ts-jest": "^29.2.5",
"typechain": "^8.3.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@charmverse/core": "^0.112.2",
"@ethereum-attestation-service/eas-contracts": "^1.7.1",
"@ethereum-attestation-service/eas-sdk": "^2.7.0",
"@morpho-labs/gnosis-tx-builder": "^2.0.0",
"@nomicfoundation/hardhat-ignition-viem": "^0.15.9",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@pinata/sdk": "^2.1.0",
"@sablier/v2-core": "^1.2.0",
"@sablier/v2-periphery": "^1.2.0",
"@safe-global/api-kit": "^2.5.8",
"@safe-global/protocol-kit": "^5.2.1",
"@safe-global/types-kit": "^1.0.2",
"@tenderly/hardhat-tenderly": "^2.5.2",
"@types/jest": "^29.5.13",
"dotenv-cli": "^7.4.2",
"hardhat-jest": "^1.0.8",
"inquirer": "^11.0.1",
"solidity-coverage": "^0.8.14",
"uuid": "^10.0.0",
"viem": "^2.21.9"
},
"overrides": {
"chai": "^4.4.1"
}
}