-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.19.0 <21"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"env:check": "node scripts/check-env-example.mjs",
"lint:fix": "eslint --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "vitest run --maxWorkers=1",
"test:watch": "vitest",
"verify": "pnpm run lint && pnpm run env:check && pnpm run format:check && pnpm exec tsc --noEmit && pnpm test",
"clean": "rm -rf .next .turbo storybook-static coverage test-results playwright-report .lighthouseci tsconfig.tsbuildinfo",
"test:e2e": "playwright test",
"test:mutation": "stryker run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes",
"prepare": "husky",
"generate:changelog": "npx git-cliff --config .gitcliff.toml",
"scaffold:component": "npx tsx scripts/scaffold-component.ts"
},
"dependencies": {
"@react-email/components": "1.0.12",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^15.0.1",
"@supabase/supabase-js": "2.106.2",
"@tanstack/react-query": "^5.100.5",
"@types/papaparse": "^5.5.2",
"@types/qrcode": "^1.5.6",
"i18next": "^26.0.8",
"i18next-browser-languagedetector": "^8.2.1",
"jspdf": "^4.2.1",
"lucide-react": "^1.16.0",
"next": "16.2.4",
"next-intl": "^4.13.0",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.6",
"papaparse": "^5.5.3",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^17.0.4",
"react-joyride": "^3.1.0",
"recharts": "^2.15.0",
"resend": "6.12.4",
"sonner": "^2.0.7",
"storybook": "^10.4.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.2.1",
"@playwright/test": "^1.60.0",
"@storybook/addon-a11y": "^10.4.1",
"@storybook/addon-docs": "^10.4.1",
"@storybook/addon-links": "^10.4.3",
"@storybook/addon-mcp": "^0.6.0",
"@storybook/addon-vitest": "^10.4.1",
"@storybook/nextjs-vite": "^10.4.1",
"@storybook/react": "^10.4.3",
"@storybook/react-vite": "^10.4.4",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"chromatic": "^17.4.0",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-storybook": "^10.4.1",
"git-cliff": "^2.13.1",
"husky": "9.1.7",
"jest-axe": "^10.0.0",
"jsdom": "^29.0.2",
"lint-staged": "15.5.2",
"msw": "^2.7.0",
"playwright": "^1.60.0",
"prettier": "3.5.3",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^8.0.14",
"vitest": "^4.1.5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}