-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.18 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.18 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
{
"name": "prisma",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --reporter=verbose",
"deploy:cf": "npm run build && npx wrangler pages deploy out --project-name=prisma-rt04",
"bot": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" scripts/telegram-bot.ts"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@supabase/supabase-js": "^2.90.1",
"@types/node-telegram-bot-api": "^0.64.13",
"@types/pdfkit": "^0.17.5",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.3.1",
"dotenv": "^17.3.1",
"framer-motion": "^12.26.2",
"ip-rate-limit": "^1.1.0",
"jspdf": "^4.0.0",
"lucide-react": "^0.562.0",
"next": "16.1.4",
"next-intl": "^4.8.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"node-telegram-bot-api": "^0.67.0",
"pdfkit": "^0.17.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-google-recaptcha": "^3.1.0",
"react-icons": "^5.5.0",
"sanitize-html": "^2.17.0",
"sql.js": "^1.8.0",
"tailwind-merge": "^3.4.0",
"ts-node": "^10.9.2",
"uuid": "^13.0.0",
"xss": "^1.0.15"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@types/react-google-recaptcha": "^2.1.9",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
},
"overrides": {
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3"
}
}