forked from Stellopay/stellopay-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (81 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (81 loc) · 2.49 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"packageManager": "npm@10.9.7",
"scripts": {
"preinstall": "node scripts/check-package-manager.js",
"dev": "next dev --turbopack",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run --coverage",
"test:watch": "vitest",
"prettier": "prettier --write .",
"test:e2e": "playwright test --project=chromium",
"test:a11y": "playwright test tests/a11y.spec.ts",
"type-check": "tsc --noEmit",
"test:e2e:settings": "playwright test tests/settings.spec.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.5.7",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-tabs": "^1.1.21",
"@testing-library/dom": "^10.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"@tailwindcss/oxide-win32-x64-msvc": "^4.3.3",
"date-fns": "^4.4.0",
"framer-motion": "^12.43.0",
"jspdf": "^4.2.1",
"lucide-react": "^1.27.0",
"next": "16.2.12",
"next-auth": "^4.24.15",
"otplib": "^13.4.1",
"qrcode": "^1.5.4",
"react": "^19.2.8",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.8",
"react-hook-form": "^7.83.0",
"recharts": "^3.10.1",
"sonner": "^2.0.7",
"speakeasy": "^2.0.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@next/bundle-analyzer": "^16.2.12",
"@playwright/test": "^1.62.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/speakeasy": "^2.0.10",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.8.0",
"eslint-config-next": "^16.2.12",
"jsdom": "^29.1.1",
"prettier": "^3.9.6",
"tailwindcss": "^4.1.4",
"tw-animate-css": "^1.4.0",
"typescript": "7.0.2",
"vitest": "^4.1.10",
"vitest-axe": "^0.1.0"
}
}