-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.53 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.53 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
{
"name": "base-aura",
"version": "1.0.0",
"description": "Base Aura - Discover your on-chain identity on Base",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"preview": "vite preview",
"compile": "hardhat --config hardhat.config.cjs compile",
"deploy": "hardhat --config hardhat.config.cjs run scripts/deploy.cjs --network baseSepolia",
"deploy:mainnet": "hardhat --config hardhat.config.cjs run scripts/deploy.cjs --network baseMainnet",
"verify": "hardhat --config hardhat.config.cjs verify --network baseSepolia",
"fetch:addresses": "node backend/fetch-addresses.mjs",
"mint:once": "node backend/mint-once.mjs",
"mint:batch": "node backend/mint-batch.mjs",
"mint:stop": "node backend/mint-stop.mjs"
},
"dependencies": {
"@coinbase/onchainkit": "^0.16.0",
"@farcaster/miniapp-sdk": "^0.2.1",
"@rainbow-me/rainbowkit": "^2.1.0",
"@tanstack/react-query": "^5.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"viem": "^2.9.0",
"wagmi": "^2.5.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@openzeppelin/contracts": "^5.4.0",
"@vitejs/plugin-react": "^4.2.1",
"chai": "^4.5.0",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"hardhat": "^2.22.0",
"vite": "^5.2.0"
}
}