-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 KB
/
package.json
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
{
"name": "memba",
"version": "1.0.3",
"description": "SMS reminders for elderly using Twilio API, Vertex AI & Google Cloud services.",
"keywords": [
"memba",
"rememba",
"remember",
"reminder",
"SMS",
"twilio",
"vertex",
"ai",
"google",
"cloud",
"run",
"build",
"lmm",
"gemini",
"api",
"prisma",
"typescript",
"ts",
"node",
"js",
"express"
],
"license": "GPL-3.0-only",
"contributors": [
{
"name": "Ayush",
"email": "[email protected]",
"url": "https://github.com/is-it-ayush"
},
{
"name": "Richard",
"email": "[email protected]",
"url": "https://github.com/richardevcom"
}
],
"scripts": {
"typecheck": "tsc --noEmit",
"format": "prettier . --check --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "prettier . --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --cache --cache-location 'node_modules/.cache/.eslintcache' --max-warnings 0",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint . --fix --cache --cache-location 'node_modules/.cache/.eslintcache' --max-warnings 0",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"start": "node dist/index.js",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:node": "node --watch dist/index.js",
"dev:esbuild": "pnpm run build --watch",
"dev": "run-p dev:*",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset --force"
},
"dependencies": {
"@google-cloud/vertexai": "^1.2.0",
"@prisma/client": "5.15.1",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"prisma": "^5.15.1",
"twilio": "^5.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"esbuild": "^0.21.5",
"eslint": "8.48.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.3",
"typescript": "^5.4.5"
}
}