-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3 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
{
"name": "next-template",
"version": "0.0.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"migrate:deploy": "prisma migrate deploy",
"migrate": "prisma migrate dev",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@homeycommunity/homey-auth": "^0.0.1",
"@hono/swagger-ui": "^0.5.0",
"@hono/zod-validator": "^0.4.1",
"@hookform/resolvers": "^3.9.1",
"@octokit/rest": "^21.0.2",
"@prisma/client": "^6.0.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@scalar/hono-api-reference": "^0.5.163",
"@sentry/nextjs": "^8.44.0",
"@tanstack/react-query": "^5.62.8",
"@tanstack/react-table": "^8.20.5",
"adm-zip": "^0.5.16",
"axios": "^1.7.9",
"bufferutil": "^4.0.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"emitter-io": "^1.39.0",
"formidable": "^3.5.2",
"hono": "^4.6.13",
"hono-openapi": "^0.2.1",
"lucide-react": "^0.468.0",
"minio": "^8.0.2",
"next": "^15.5.9",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.4",
"openid-client": "^6.1.7",
"original-fs": "^1.2.0",
"react": "^19.0.0",
"react-day-picker": "^8.10.1",
"react-dom": "^19.0.0",
"react-hook-form": "^7.53.2",
"react-syntax-highlighter": "^16.1.0",
"sharp": "^0.33.5",
"sonner": "^1.7.0",
"sugar-high": "^0.7.5",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"targz-glob": "^0.0.5",
"utf-8-validate": "^5.0.10",
"zod": "^3.24.1",
"zod-openapi": "^4.1.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@types/adm-zip": "^0.5.7",
"@types/formidable": "^3.4.5",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/parser": "^8.17.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-next": "15.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-tailwindcss": "^3.17.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prisma": "^6.0.1",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
}
}