-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.93 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": "guildpass-integrations",
"private": true,
"version": "0.1.0",
"description": "Main frontend MVP for the GuildPass ecosystem: Next.js App Router, TypeScript, Tailwind, shadcn/ui, wagmi/viem, and React Query.",
"repository": {
"type": "git",
"url": "git+https://github.com/Adamantine-Guild/guildpass-integrations.git"
},
"author": "GuildPass Team",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "tsc -p test/tsconfig.json --skipLibCheck && node --test test-dist/test/*.test.js",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:accessibility": "playwright test test/e2e/accessibility.spec.ts",
"typecheck": "tsc --noEmit",
"sync-types": "node scripts/sync-api-types.js --write",
"check-types": "node scripts/sync-api-types.js --check"
},
"dependencies": {
"@radix-ui/react-label": "^2.1.12",
"@tanstack/query-sync-storage-persister": "^5.101.4",
"@tanstack/react-query": "^5.52.0",
"@tanstack/react-query-devtools": "^5.52.0",
"@tanstack/react-query-persist-client": "^5.101.4",
"@wagmi/connectors": "^5.0.14",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"diff": "^9.0.0",
"lucide-react": "^0.435.0",
"next": "14.2.5",
"postcss": "^8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"viem": "^2.17.0",
"wagmi": "^2.13.0",
"zod": "^3.23.8"
},
"optionalDependencies": {
"@guildpass/integration-client": "*"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@playwright/test": "^1.48.0",
"@types/diff": "^7.0.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"typescript": "^5.4.5"
}
}