-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"name": "cheeese_fe",
"version": "0.1.0",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": "22.20.0"
},
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"build:docker": "docker build -t cheese_frontend .",
"start": "next start",
"lint": "eslint",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css}\"",
"test": "vitest",
"token": "node scripts/generate-color-token.mjs",
"ep": "node scripts/generate-endpoint.ts"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"@next/third-parties": "^16.1.1",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@tanstack/react-query": "^5.90.2",
"axios": "^1.12.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"emoji-picker-react": "^4.14.2",
"exifr": "^7.1.3",
"framer-motion": "^12.23.24",
"heic-to": "^1.3.0",
"html-to-image": "^1.11.13",
"jszip": "^3.10.1",
"lottie-react": "^2.4.1",
"lucide-react": "^0.546.0",
"next": "15.5.7",
"react": "19.1.2",
"react-day-picker": "^9.11.1",
"react-dom": "19.1.2",
"react-qr-code": "^2.0.18",
"swiper": "^12.0.3",
"tailwind-merge": "^3.3.1",
"use-sync-external-store": "^1.6.0",
"vaul": "^1.1.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.14"
}
}