-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.37 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.37 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
{
"name": "namu-2",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:generate-test-data": "tsx ./src/server/scripts/generateTestData.ts",
"dev": "next dev --turbo",
"dev:https": "next dev --experimental-https --turbo",
"start": "next start",
"postinstall": "prisma generate",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"lint:force": "biome lint --apply-unsafe .",
"prettify": "prettier . --check",
"prettify:fix": "prettier . --write",
"cleancode:check": "pnpm lint & pnpm prettify",
"cleancode:fix": "pnpm lint:fix & pnpm prettify:fix",
"typecheck": "pnpm exec tsc --noEmit"
},
"dependencies": {
"@azure/storage-blob": "^12.24.0",
"@formkit/auto-animate": "^0.8.2",
"@headlessui/react": "^1.7.17",
"@preact/signals-react": "^2.0.0",
"@prisma/client": "6.6.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@react-spring/web": "^9.7.3",
"@stripe/react-stripe-js": "^2.8.1",
"@stripe/stripe-js": "^4.8.0",
"@t3-oss/env-nextjs": "^0.7.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^4.32.6",
"@uidotdev/usehooks": "^2.4.1",
"@use-gesture/react": "^10.3.0",
"bcrypt": "^5.1.1",
"chart.js": "^4.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"iron-session": "^8.0.1",
"js-sha256": "^0.11.0",
"lodash": "^4.17.21",
"next": "15.4.10",
"next-auth": "^4.24.13",
"next-qrcode": "^2.5.1",
"qrcode.react": "^3.1.0",
"rate-limiter-flexible": "^7.0.0",
"react": "19.0.0-rc-69d4b800-20241021",
"react-advanced-cropper": "^0.20.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-intersection-observer": "^9.5.3",
"stripe": "^17.2.0",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"uuid": "^10.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcrypt": "^5.0.2",
"@types/lodash": "^4.14.202",
"@types/node": "^18.16.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.1",
"prisma": "6.6.0",
"tailwindcss": "^3.4.14",
"tsx": "^4.7.0",
"typescript": "5.5.3"
},
"trustedDependencies": [
"@prisma/client"
],
"ct3aMetadata": {
"initVersion": "7.23.2"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@prisma/client",
"@prisma/engines",
"bcrypt",
"esbuild",
"prisma",
"sharp"
]
}
}