-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "web-personal-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ts-lint": "tsc --noEmit --skipLibCheck",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.1.17",
"@vercel/speed-insights": "^1.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.555.0",
"next": "^16.0.7",
"next-intl": "^4.5.8",
"next-themes": "^0.4.6",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.7",
"eslint-config-prettier": "^10.1.8",
"postcss": "^8",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.17",
"typescript": "^5"
},
"prettier": {
"tabWidth": 2,
"singleQuote": false,
"printWidth": 120,
"plugins": [
"prettier-plugin-tailwindcss"
],
"endOfLine": "lf"
}
}