-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.8 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
{
"name": "gmaildraft",
"version": "1.0.0",
"description": "GmailDraft is an AI-powered assistant that helps businesses respond to incoming emails automatically. Once connected to a Gmail account, GmailDraft monitors new emails, classifies their intent, and generates smart replies saved directly to the user's Gmail drafts. The system works silently in the background after a one-time setup.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"db:push": "dotenv -e .env.local -- prisma db push",
"db:generate": "dotenv -e .env.local -- prisma generate",
"postinstall": "prisma generate"
},
"repository": {
"type": "git",
"url": "https://github.com/paabloLC/gmail-ai-draft.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/pubsub": "^5.1.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.10.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.0.0",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.4",
"googleapis": "^150.0.1",
"next": "^15.3.4",
"next-auth": "^4.24.11",
"openai": "^5.5.1",
"postcss": "^8.5.6",
"prisma": "^6.10.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.3"
},
"devDependencies": {
"dotenv-cli": "^8.0.0"
}
}