-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "p2p-powergrid",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "npx tsx scripts/seed.ts",
"compile": "hardhat compile",
"test:contracts": "hardhat test",
"test:api": "node scripts/api-test.js",
"test": "hardhat test && node scripts/api-test.js",
"deploy:sepolia": "hardhat run scripts/deploy.js --network sepolia"
},
"dependencies": {
"@google/genai": "^1.0.0",
"@libsql/client": "^0.14.0",
"@openzeppelin/contracts": "^5.4.0",
"bcryptjs": "^3.0.3",
"canvas-confetti": "^1.9.4",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.468.0",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.6.0",
"recharts": "^2.15.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^4.0.4",
"@nomicfoundation/hardhat-ignition-ethers": "^3.0.7",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^3.0.10",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@tailwindcss/postcss": "^4.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/bcryptjs": "^2.4.6",
"@types/canvas-confetti": "^1.9.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"chai": "^6.2.2",
"dotenv": "^17.3.1",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.8.0",
"hardhat": "^2.28.6",
"postcss": "^8.5.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typechain": "^8.3.2",
"typescript": "^5.7.0"
}
}