forked from JSE-ORG/trust-link-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.21 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
78
{
"name": "trustlink-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"type-check": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test": "vitest run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"audit:tailwind": "node scripts/purge-tailwind-audit.mjs",
"lighthouse:ci": "lhci autorun"
},
"dependencies": {
"@sentry/nextjs": "^10.61.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^16.0.1",
"@tanstack/react-query": "^5.100.14",
"@types/crypto-js": "^4.2.2",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"crypto-js": "^4.2.0",
"framer-motion": "^11.0.0",
"html2canvas": "^1.4.1",
"i18next": "^26.3.0",
"jspdf": "^4.2.1",
"jwt-decode": "^4.0.0",
"lucide-react": "^1.21.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"posthog-js": "^1.378.1",
"qrcode.react": "^4.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^17.0.8",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"swr": "^2.4.1"
},
"devDependencies": {
"@lhci/cli": "^0.13.0",
"@playwright/test": "^1.51.1",
"@storybook/addon-essentials": "^8.6.18",
"@storybook/addon-interactions": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@storybook/testing-library": "^0.2.2",
"@tailwindcss/cli": "^4.3.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20",
"@types/react": "^19",
"@vitejs/plugin-react-swc": "^4.3.1",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest-axe": "^9.0.0",
"jsdom": "^29.1.1",
"purgecss": "^8.0.0",
"tailwindcss": "^4",
"typescript": "^5.9.3",
"vite": "^6.0.0",
"vite-tsconfig-paths": "^4.0.0",
"vitest": "^4.1.7"
},
"overrides": {
"react": "19.2.4",
"react-dom": "19.2.4",
"next": "16.2.6"
}
}