-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.15 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.15 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"mock": "npx tsx watch ./mocks/http.ts",
"svg": "npx tsx ./scripts/svg.ts --module=gradients"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@serwist/next": "^9.0.10",
"@tanstack/react-query": "^5.59.20",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"event-source-polyfill": "^1.0.31",
"framer-motion": "^11.11.11",
"lodash.clonedeep": "^4.5.0",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.456.0",
"nanoid": "^5.0.9",
"next": "14.2.17",
"next-themes": "^0.4.3",
"quill": "^2.0.3",
"ramda": "^0.30.1",
"react": "^18",
"react-dom": "^18",
"recharts": "^2.15.0",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.1",
"web-push": "^3.6.7",
"zustand": "^5.0.1"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.10.2",
"@svgr/webpack": "^8.1.0",
"@tanstack/eslint-plugin-query": "^5.60.1",
"@types/cors": "^2.8.17",
"@types/event-source-polyfill": "^1.0.5",
"@types/express": "^5.0.0",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20",
"@types/ramda": "^0.30.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/web-push": "^3.6.4",
"cors": "^2.8.5",
"eslint": "^8",
"eslint-config-next": "14.2.17",
"eslint-config-prettier": "^9.1.0",
"express": "^4.21.1",
"msw": "^2.6.4",
"postcss": "^8",
"serwist": "^9.0.10",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}