forked from crackedstudio/tikka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.64 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tikka",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"analyze": "ANALYZE=1 vite build",
"lint": "eslint .",
"check:locales": "node scripts/check-locales.js",
"pretest": "pnpm run check:locales",
"prebuild": "pnpm run check:locales",
"test": "vitest --run",
"test:unit": "vitest --run",
"test:e2e": "playwright test",
"preview": "vite preview",
"validate-env": "node scripts/validate-env.js",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"lighthouse": "lhci autorun",
"lighthouse:local": "pnpm run build && lhci autorun"
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.7.3",
"@sentry/react": "^10.62.0",
"@stellar/stellar-sdk": "^14.4.3",
"@supabase/supabase-js": "^2.76.1",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-query-devtools": "^5.101.1",
"canvas-confetti": "^1.9.4",
"i18next": "^26.0.7",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.6",
"lucide-react": "^0.544.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-helmet-async": "^3.0.0",
"react-i18next": "^17.0.4",
"react-router-dom": "^7.13.2",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"swiper": "^11.2.10",
"tailwindcss": "^4.1.13",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@lhci/cli": "^0.14.0",
"@playwright/test": "^1.43.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^25.0.9",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fast-check": "^4.7.0",
"globals": "^16.3.0",
"jsdom": "^22.1.0",
"react-hook-form": "^7.72.0",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^1.4.1"
}
}