-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1000 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1000 Bytes
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
{
"name": "solufy-website",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.30.1",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check --fix .",
"lint:ci": "biome check .",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@tabler/icons-react": "^3.37.1",
"@tailwindcss/typography": "^0.5.19",
"clsx": "^2.1.1",
"motion": "^12.34.3",
"next": "16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"sharp"
]
}
}