-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.93 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
{
"name": "starter-with-lint",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun run gen:i18n && concurrently -k -n yaml,next -c cyan,magenta \"bun run gen:i18n:watch\" \"next dev\"",
"build": "bun run gen:i18n && next build",
"start": "next start",
"gen:i18n": "bun run scripts/gen-messages.ts",
"gen:i18n:watch": "bun run scripts/gen-messages.ts --watch",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "biome format --write && prettier --write \"locales/**/*.{yaml,yml}\"",
"format:yaml": "prettier --write \"locales/**/*.{yaml,yml}\"",
"check-format": "biome format && prettier --check \"locales/**/*.{yaml,yml}\"",
"check-lint": "biome lint",
"check-types": "bun run gen:i18n && tsc --pretty --noEmit",
"test-all": "bun run check-format && bun run check-lint && bun run check-types && bun run build",
"prepare": "[ -n \"$SKIP_HUSKY\" ] || node .husky/install.mjs",
"commit": "commitizen"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@hugeicons/core-free-icons": "^4.1.1",
"@hugeicons/react": "^1.1.6",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"next": "16.2.4",
"next-intl": "^4.11.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.2.5",
"react-dom": "19.2.5",
"shadcn": "^4.6.0",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@commitlint/config-conventional": "^20.5.3",
"@commitlint/format": "^20.5.0",
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "24.10.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"autoprefixer": "10.5.0",
"chokidar": "^5.0.0",
"commitizen": "^4.3.1",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"match-sorter": "^8.3.0",
"postcss": "8.5.13",
"prettier": "^3.8.3",
"tailwindcss": "4.2.4",
"tailwindcss-animated": "^2.0.0",
"typescript": "6.0.3",
"yaml": "^2.8.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}