-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.62 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.62 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
{
"name": "joybit",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"hardhat:compile": "hardhat compile",
"hardhat:test": "hardhat test",
"hardhat:deploy": "hardhat run scripts/deploy.js",
"generate-cards": "node scripts/generate-achievement-cards.js",
"upload-ipfs": "node scripts/upload-to-pinata.js",
"create-metadata": "node scripts/create-metadata-folder.js",
"upload-folder": "node scripts/upload-folder-to-pinata.js",
"test-deploy": "npx hardhat run scripts/test-deployment-cost.js --network baseSepolia",
"deploy-achievement": "npx hardhat run scripts/deploy-achievement.js --network base",
"update-uri": "npx hardhat run scripts/update-base-uri.js --network base",
"add-achievements": "npx hardhat run scripts/add-achievements-bulk.js --network base",
"check-achievements": "npx hardhat run scripts/check-achievements.js --network base",
"reset-achievements": "node scripts/reset-achievements.js"
},
"dependencies": {
"@coinbase/onchainkit": "^1.1.2",
"@farcaster/hub-web": "^0.11.0",
"@farcaster/miniapp-sdk": "^0.2.1",
"@farcaster/miniapp-wagmi-connector": "^1.1.0",
"@libsql/client": "^0.15.15",
"@pinata/sdk": "^2.1.0",
"@rainbow-me/rainbowkit": "^2.0.0",
"@tanstack/react-query": "^5.28.0",
"@types/node": "^20.12.0",
"@types/nodemailer": "^7.0.4",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.0",
"axios": "^1.13.2",
"canvas": "^3.2.0",
"dotenv": "^17.2.3",
"ethers": "^6.11.0",
"form-data": "^4.0.5",
"framer-motion": "^11.0.0",
"matter-js": "^0.20.0",
"next": "^16.1.1",
"nft.storage": "^7.2.0",
"nodemailer": "^7.0.12",
"phaser": "^3.90.0",
"planck-js": "^1.3.0",
"poly-decomp": "^0.3.0",
"postcss": "^8.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.6.0",
"sharp": "^0.34.5",
"simplex-noise": "^4.0.3",
"tailwindcss": "^3.4.0",
"typescript": "^5.4.0",
"viem": "^2.9.0",
"wagmi": "^2.5.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@chainlink/contracts": "^1.1.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0",
"@openzeppelin/hardhat-upgrades": "^3.9.1",
"@types/minimatch": "^5.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"hardhat": "^2.22.0",
"vercel": "^50.1.3"
}
}