forked from HermanKoii/lottery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 882 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 882 Bytes
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
{
"name": "lottery",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy:sepolia": "cd blockchain && npx hardhat run scripts/deploy.ts --network sepolia && cd .."
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@formkit/auto-animate": "^1.0.0-beta.6",
"@openzeppelin/contracts": "^4.8.2",
"dotenv": "^16.0.3",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"truncate-eth-address": "^1.0.2",
"web3": "^1.7.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"eslint": "8.21.0",
"eslint-config-next": "12.2.5",
"hardhat": "^2.13.0",
"typescript": "^5.0.2"
}
}