-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.62 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
{
"name": "alert-system",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"postinstall": "prisma generate",
"worker": "tsx --env-file=.env src/workers/check-alerts.ts",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:generate": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.0",
"@onkernel/sdk": "^0.14.2",
"@prisma/client": "^6.2.0",
"@radix-ui/react-dialog": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-select": "^2.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@slack/web-api": "^7.6.0",
"axios": "^1.7.0",
"bullmq": "^5.34.0",
"cheerio": "^1.0.0",
"clsx": "^2.1.0",
"date-fns": "^4.1.0",
"diff": "^7.0.0",
"googleapis": "^161.0.0",
"ioredis": "^5.4.0",
"lucide-react": "^0.469.0",
"nanoid": "^5.0.0",
"next": "15.5.4",
"next-auth": "^4.24.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.1",
"playwright-core": "^1.48.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"resend": "^4.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/diff": "^6.0.0",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"prisma": "^6.2.0",
"tailwindcss": "^4",
"tsx": "^4.19.0",
"typescript": "^5"
}
}