-
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.27 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.27 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": "jamming-fe",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.9.0",
"scripts": {
"dev": "PORT=3038 next dev",
"build": "next build",
"start": "PORT=3038 next start",
"lint": "next lint",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hookform/resolvers": "^3.10.0",
"@mui/material": "^6.4.6",
"@mui/x-date-pickers": "^7.27.1",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-switch": "^1.1.3",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.49.1",
"@tailwindcss/postcss": "^4.0.9",
"@tanstack/react-query": "^5.66.11",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.2",
"@vercel/analytics": "^1.5.0",
"axios": "^1.13.5",
"framer-motion": "^11.18.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"natural": "^8.0.1",
"next": "^16.1.6",
"next-auth": "^4.24.11",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^9.15.1",
"react-markdown": "^10.1.0",
"react-slick": "^0.30.3",
"sanitize-html": "^2.14.0",
"undici": "^7.22.0",
"xml2js": "^0.6.2",
"zod": "^3.24.2",
"zustand": "^5.0.11"
},
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.16",
"@types/node": "^20.17.21",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.2",
"jsdom": "^28.0.0",
"msw": "^2.12.10",
"postcss": "^8.5.3",
"sharp": "^0.34.5",
"slick-carousel": "^1.8.1",
"tailwindcss": "^4.0.9",
"typescript": "^5.8.2",
"vitest": "^4.0.18"
}
}