forked from TheSoftwareDevGuild/TheGuildGenesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.01 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
{
"name": "frontend",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts,.tsx,.astro --format 'table' --fix",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/node": "^9.4.3",
"@astrojs/react": "^4.3.1",
"@ethereum-attestation-service/eas-sdk": "^2.9.1-beta.1",
"@hookform/resolvers": "^5.2.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@rainbow-me/rainbowkit": "^2.2.8",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-query": "^5.87.4",
"@tanstack/react-router": "^1.131.36",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"astro": "^5.14.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.2",
"lucide-react": "^0.543.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-router-dom": "^7.9.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"viem": "^2.37.5",
"wagmi": "^2.16.9",
"zod": "^3.25.76"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.86.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@wagmi/core": "^2.20.3",
"eslint": "^9.35.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-astro": "^1.3.1",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"tw-animate-css": "^1.3.8",
"vitest": "^3.2.4"
}
}