-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.19 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
{
"name": "loftlyy",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"dev-performance-debug": "NEXT_TURBOPACK_TRACING=1 next dev --turbopack",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"optimize": "tsx scripts/optimize-images.ts",
"check": "ultracite check",
"fix": "ultracite fix",
"validate": "tsx scripts/validate.ts",
"cli": "tsx cli/index.ts",
"brands": "tsx cli/index.ts brands",
"cli:build": "npm --prefix cli run build",
"mcp:build": "npm --prefix mcp run build",
"translations:status": "tsx scripts/translation-agent.ts status",
"translations:scaffold": "tsx scripts/translation-agent.ts scaffold",
"prebuild": "tsx scripts/validate.ts",
"prepare": "husky",
"doctor": "npx react-doctor@latest"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@next/third-parties": "^16.2.10",
"@tabler/icons-react": "^3.44.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"next": "16.2.10",
"next-intl": "^4.13.2",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"nuqs": "^2.9.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"shadcn": "^4.13.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@modelcontextprotocol/sdk": "^1.29.0",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"cli-table3": "^0.6.5",
"commander": "^15.0.0",
"eslint": "^10.7.0",
"eslint-config-next": "16.2.10",
"husky": "^9.1.7",
"ora": "^9.4.1",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"picocolors": "^1.1.1",
"postcss": "^8",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.0",
"sharp": "^0.35.3",
"stylelint": "^17.14.0",
"tailwindcss": "^4.3.2",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"ultracite": "7.9.4",
"zod": "^4.4.3"
},
"packageManager": "pnpm@11.13.0"
}