-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.4 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.4 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
80
81
82
83
84
85
86
{
"name": "website2024",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "serve ./out",
"lint": "npx biome check --apply ./ || true && npx stylelint src/styles/**/*.{css,scss,sass} --fix",
"lint:bun": "bunx biome check --apply ./ || true && bunx stylelint src/styles/**/*.{css,scss,sass} --fix"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.7",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@hookform/resolvers": "^3.6.0",
"@million/lint": "^1.0.0-rc.12",
"@mui/joy": "^5.0.0-beta.36",
"@mui/material": "^5.15.18",
"@nextui-org/accordion": "^2.0.33",
"@nextui-org/button": "^2.0.32",
"@nextui-org/card": "^2.0.29",
"@nextui-org/modal": "^2.0.34",
"@nextui-org/react": "^2.4.0",
"@nextui-org/skeleton": "^2.0.28",
"@nextui-org/system": "^2.2.0",
"@nextui-org/tabs": "^2.0.30",
"@nextui-org/theme": "^2.2.4",
"@radix-ui/react-scroll-area": "^1.0.5",
"@svgr/webpack": "^8.1.0",
"@t3-oss/env-nextjs": "^0.10.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.13",
"class-variance-authority": "^0.7.0",
"critters": "0.0.7",
"framer-motion": "^11.2.6",
"million": "^3.1.6",
"next": "14.2.3",
"nuqs": "^1.17.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-draggable": "^4.4.6",
"react-hook-form": "^7.51.5",
"react-icons": "^5.2.1",
"react-use-measure": "^2.1.1",
"sass": "^1.77.2",
"sonner": "^1.4.41",
"stylelint": "^16.6.0",
"stylelint-config-standard-scss": "^13.1.0",
"tailwind-merge": "^2.3.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"postcss": "^8",
"tailwindcss": "^3.4.3",
"typescript": "^5"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
"defaults",
"not dead",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
]
}
}