-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) Β· 2.38 KB
/
package.json
File metadata and controls
78 lines (78 loc) Β· 2.38 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
{
"name": "took-fe",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
"setup": "sh scripts/setup.sh",
"dev": "node scripts/https-local-server.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"release": "pnpm build && zip -r took-release-v1.0.0.zip .next public package.json next.config.js pnpm-lock.yaml"
},
"dependencies": {
"@hookform/resolvers": "^4.1.3",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@tanstack/react-query": "^5.66.11",
"axios": "^1.8.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"es-hangul": "^2.3.2",
"framer-motion": "^12.4.10",
"lucide-react": "^0.475.0",
"motion": "^12.4.10",
"next": "14.2.23",
"next-themes": "^0.4.4",
"qrcode.react": "^4.2.0",
"react": "^18",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^9.16.0",
"react-lottie-player": "^2.1.0",
"react-select": "^5.10.1",
"sonner": "^2.0.1",
"swiper": "^11.2.4",
"tailwind-merge": "^3.0.1",
"tailwind-scrollbar-hide": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"ts-pattern": "^5.6.2",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.50.1",
"@tanstack/react-query-devtools": "^5.66.11",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/style-guide": "^5.2.0",
"cspell": "^8.10.0",
"dotenv": "^16.4.7",
"eslint": "^8",
"eslint-config-next": "14.2.23",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.3",
"husky": "^8.0.3",
"postcss": "^8",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}