generated from mudgen/contracts-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "quickswap-voting",
"version": "1.0.0",
"description": "Snapshot voting wrapper contracts for QuickSwap.",
"type": "module",
"scripts": {
"test": "hardhat test",
"test:ci": "hardhat test --bail",
"typecheck": "tsc --noEmit",
"audit": "pnpm audit --audit-level=moderate",
"baseline:capture": "tsx scripts/capture-baseline.ts",
"monitor:limits": "tsx scripts/monitor-pool-limits.ts",
"verify:latest": "tsx scripts/verify-latest.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuickSwap/quickswap-voting.git"
},
"author": "QuickSwap",
"license": "MIT",
"bugs": {
"url": "https://github.com/QuickSwap/quickswap-voting/issues"
},
"homepage": "https://github.com/QuickSwap/quickswap-voting#readme",
"devDependencies": {
"@ethereumjs/wallet": "^10.0.0",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-node-test-runner": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^3.0.8",
"@nomicfoundation/hardhat-viem": "^3.0.1",
"@nomicfoundation/hardhat-viem-assertions": "^3.0.4",
"@types/node": "^25.0.0",
"dotenv": "16.4.5",
"hardhat": "3.1.0",
"prettier": "3.4.2",
"prettier-plugin-solidity": "1.4.3",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"viem": "^2.41.2"
},
"pnpm": {
"onlyBuiltDependencies": []
}
}