-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.85 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
{
"name": "evor",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"compile": "hardhat compile",
"deploy:base": "hardhat run scripts/deploy-evor-delegate.ts --network baseSepolia",
"deploy:base-mainnet": "hardhat run scripts/deploy-base.ts --network base",
"deploy:sepolia": "hardhat run scripts/deploy-sepolia.ts --network sepolia",
"demo": "hardhat run scripts/demo-eip7702.ts --network baseSepolia",
"demo:batch": "hardhat run scripts/demo-batch.ts --network baseSepolia",
"test:deploy-nfts": "hardhat run scripts/deploy-test-nfts.ts --network baseSepolia",
"test:deploy-nft": "hardhat run scripts/deploy-single-nft.ts --network baseSepolia",
"test:deploy-1155": "hardhat run scripts/deploy-erc1155.ts --network baseSepolia",
"test:create-approvals": "tsx scripts/create-test-approvals.ts --chain=base-sepolia",
"test:create-approvals:sepolia": "tsx scripts/create-test-approvals.ts --chain=sepolia",
"test:create-all": "hardhat run scripts/create-test-approvals-comprehensive.ts --network baseSepolia",
"test:create-permit2": "hardhat run scripts/create-permit2-approval.ts --network baseSepolia",
"test:check-approvals": "tsx scripts/check-approvals.ts --network baseSepolia",
"test:revoke": "hardhat run scripts/eip7702-revoke.ts --network baseSepolia",
"test:clear": "hardhat run scripts/eip7702-clear.ts --network baseSepolia",
"test:simple-7702": "hardhat run scripts/test-simple-7702.ts --network baseSepolia",
"test:base-7702": "hardhat run scripts/test-base-7702.ts --network baseSepolia",
"test:sepolia": "hardhat run scripts/test-sepolia-7702.ts --network sepolia"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@tanstack/react-query": "^5.90.5",
"abitype": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"html2canvas-pro": "^1.5.12",
"lucide-react": "^0.546.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"vanish-effect": "^1.1.0",
"viem": "^2.38.3",
"wagmi": "^2.18.2"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^3.0.4",
"@tailwindcss/postcss": "^4.1.15",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"hardhat": "^3.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.15",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7"
}
}