-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "tailor",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/d1scolor/tailor.git"
},
"type": "module",
"scripts": {
"dev": "next dev",
"dev:restart": "bash scripts/restart-dev.sh",
"dev:restart:fg": "DEV_FOREGROUND=1 bash scripts/restart-dev.sh",
"build": "npm run lint:i18n && next build",
"start": "next start",
"lint": "eslint . && npm run lint:i18n",
"lint:i18n": "node scripts/no-hardcoded-jsx.mjs",
"test": "node --import tsx --test src/lib/*.test.ts",
"typecheck": "tsc --noEmit",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@radix-ui/react-slot": "^1.3.3",
"bcryptjs": "^3.0.2",
"better-sqlite3": "^12.11.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.28.0",
"next": "^16.3.0",
"next-intl": "^4.13.5",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"sharp": "^0.35.3",
"tailwind-merge": "^3.6.0",
"tar": "^7.5.22",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.3.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^24.0.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.62.1",
"eslint": "^10.8.0",
"postcss": "^8.5.25",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.2",
"tsx": "^4.23.8",
"typescript": "^6.0.3"
},
"overrides": {
"esbuild": "^0.28.1",
"js-yaml": "^4.1.2",
"minimatch@^10.2.2": {
"brace-expansion": "^5.0.6"
},
"postcss": "$postcss"
}
}