-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.57 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
{
"name": "@repnet/contracts",
"version": "0.1.2",
"private": true,
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"typecheck": "tsc --noEmit",
"deploy:base-sepolia": "hardhat run scripts/deploy-current.ts --network baseSepolia",
"deploy:job-board:base-sepolia": "hardhat run scripts/deploy-job-board.ts --network baseSepolia",
"deploy:base": "hardhat run scripts/deploy-current.ts --network base",
"verify:config": "hardhat run scripts/verify-config.ts --network baseSepolia",
"verify:config:base-sepolia": "hardhat run scripts/verify-config.ts --network baseSepolia",
"verify:config:base": "hardhat run scripts/verify-config.ts --network base",
"e2e:base-sepolia": "hardhat run scripts/e2e-test.ts --network baseSepolia",
"set:fee": "hardhat run scripts/set-fee-toggle.ts --network baseSepolia",
"clean": "hardhat clean"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.2",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@openzeppelin/contracts": "^5.1.0",
"@openzeppelin/contracts-upgradeable": "^5.6.1",
"@openzeppelin/hardhat-upgrades": "^3.9.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.25",
"chai": "^4.5.0",
"dotenv": "^16.4.0",
"ethers": "^6.15.0",
"hardhat": "^2.28.6",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.9.3",
"vitest": "4.0.18"
}
}