-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.46 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.46 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "next-web",
"description": "",
"author": "",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"prettier": "@samislam/prettier-config/next",
"packageManager": "bun@1.2.10",
"engines": {
"node": ">=22.0.0",
"bun": ">=1.2.10"
},
"scripts": {
"dev": "bun ./scripts/dev.ts",
"lint": "bun ./scripts/lint.ts",
"setup": "bun ./scripts/setup.ts",
"build": "bun ./scripts/build.ts",
"clean": "bun ./scripts/clean.ts",
"format": "bun ./scripts/format.ts",
"prisma": "bun ./scripts/prisma.ts",
"locales": "bun ./scripts/locales.ts",
"start": "bun ./dist/scripts/start.js",
"start:standalone": "node .next/standalone/server.js"
},
"dependencies": {
"@clscripts/cl-common": "^1.0.4",
"@clscripts/dotenv-cli": "^8.0.1",
"@clscripts/next": "^15.3.5",
"@elysiajs/eden": "^1.4.8",
"@hookform/resolvers": "^3.10.0",
"@inquirer/prompts": "^7.10.1",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@prisma/client": "^6.19.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.38.0",
"@t3-oss/env-nextjs": "^0.13.10",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-query-devtools": "^5.91.3",
"@tolgee/format-icu": "^5.33.2",
"@tolgee/react": "^5.33.2",
"await-to-js": "^3.0.0",
"axios": "^1.13.5",
"chalk": "^4.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compare-path": "1.3.0",
"concat-str": "^1.0.6",
"conditionalize-component": "^2.0.0",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"elysia": "^1.4.24",
"framer-motion": "^11.18.2",
"iif-ts": "^2.0.0",
"ioredis": "^5.9.3",
"lodash": "^4.17.23",
"lucide-react": "^0.562.0",
"ms": "^2.1.3",
"next": "^16.1.6",
"next-intl": "^4.8.2",
"next-themes": "^0.4.6",
"nextjs-middleware-stack": "^2.0.2",
"nuqs": "^2.8.8",
"prisma": "^6.19.2",
"qs": "^6.14.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7",
"tailwindest": "^2.3.6",
"use-is-mounted-hook": "^1.0.1",
"zod": "^3.25.76",
"zustand": "^5.0.11"
},
"devDependencies": {
"@clscripts/del-cli": "^6.0.0",
"@clscripts/echo-cli": "^2.0.0",
"@clscripts/eslint": "^9.30.3",
"@clscripts/prettier": "^3.6.2",
"@clscripts/prisma": "^6.11.1",
"@clscripts/tolgee-cli": "2.13.9",
"@clscripts/ts-patch": "^3.3.0",
"@homer0/prettier-plugin-jsdoc": "11.0.2",
"@samislam/prettier-config": "2.0.1",
"@tailwindcss/postcss": "^4.1.18",
"@tolgee/cli": "^2.15.1",
"@types/lodash": "^4.17.23",
"@types/ms": "^2.1.0",
"@types/node": "^20.19.33",
"@types/qs": "^6.14.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.24",
"del-cli": "^6.0.0",
"dotenv-cli": "^7.4.4",
"echo-cli": "^2.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"postcss": "^8.5.6",
"postcss-load-config": "^6.0.1",
"prettier": "3.7.3",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "^4.1.18",
"ts-essentials": "^10.1.1",
"ts-patch": "^3.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}