-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"format": "npx prettier . --write && npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"deploy:contract": "source .env && forge script script/Deploy.s.sol:DeployScript --rpc-url \"$SEPOLIA_RPC_URL\" --broadcast --verify -vvvv",
"test:contract": "forge test -vvv",
"build": "next build && forge build",
"start:backend": "npx ts-node server/index.ts",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@dotenvx/dotenvx": "^0.44.0",
"@hcaptcha/react-hcaptcha": "^1.10.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.0.5",
"@types/websocket": "^1.0.10",
"axios": "^1.7.2",
"classnames": "^2.5.1",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"express": "^4.19.2",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"swr": "^2.2.5",
"thirdweb": "^5.24.0",
"websocket": "^1.0.35"
},
"devDependencies": {
"@hcaptcha/types": "^1.0.3",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"@wagmi/cli": "^2.1.8",
"add": "^2.0.6",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5"
}
}