-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.17 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.17 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": "mirror-chyan-user-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"code-quality": "pnpm lint && pnpm format:check && pnpm type-check",
"fix": "pnpm lint:fix && pnpm format",
"build:ts": "tsc next.config.ts",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@heroui/react": "^2.8.7",
"@heroui/system": "^2.4.17",
"@heroui/theme": "^2.4.17",
"@heroui/toast": "^2.0.19",
"@heroui/use-theme": "^2.1.10",
"@types/canvas-confetti": "^1.9.0",
"@types/qrcode": "^1.5.5",
"canvas-confetti": "^1.9.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"framer-motion": "^12.5.0",
"html2canvas": "^1.4.1",
"lodash": "^4.17.23",
"lucide-react": "^0.503.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.47",
"next": "^16.1.6",
"next-intl": "^4.7.0",
"next-themes": "^0.4.6",
"qrcode": "^1.5.4",
"react": "^19.1.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"recharts": "^2.15.1",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@next/eslint-plugin-next": "^16.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/lodash": "^4.17.16",
"@types/node": "^22.15.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.28.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.18",
"typescript": "^5.8.2",
"typescript-eslint": "^8.33.0"
},
"overrides": {
"motion": {
"react": "19.1.0",
"react-dom": "19.1.0"
}
},
"packageManager": "pnpm@10.27.0"
}