-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.34 KB
/
package.json
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": "test_hardhat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"hardhat:deploy": "npx hardhat run scripts/deploy.js --network localhost",
"sepolia:deploy": "npx hardhat run scripts/deploy.js --network sepolia",
"sepolia:redeploy": "npx hardhat clean && npx hardhat compile && npx hardhat run scripts/deploy.js --network sepolia",
"local:redeploy": "npx hardhat clean && npx hardhat compile && npx hardhat run scripts/deploy.js --network localhost",
"ganache:redeploy": "npx hardhat clean && npx hardhat compile && npx hardhat run scripts/deploy.js --network ganache",
"base:redeploy": "npx hardhat clean && npx hardhat compile && npx hardhat run scripts/deploy.js --network base_sepolia"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/joy": "^5.0.0-beta.48",
"@mui/material": "^6.1.4",
"@openzeppelin/contracts": "^5.0.2",
"@prisma/client": "^5.21.1",
"@radix-ui/react-icons": "^1.3.0",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookie": "^1.0.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.453.0",
"next": "14.2.14",
"nookies": "^2.5.2",
"pinata-web3": "^0.5.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@types/date-fns": "^2.5.3",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20",
"@types/nookies": "^1.1.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18",
"chai": "^5.1.1",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.0",
"hardhat": "^2.22.12",
"null-loader": "^4.0.1",
"postcss": "^8",
"prisma": "^5.21.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}