-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.68 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
{
"name": "twilio-task-notifier",
"version": "1.0.0",
"description": "Twilio-Task-Notifier is a feature-rich task management application designed to enhance your organizational efficiency with real-time notifications via phone calls. This backend API is built using Fastify, Typescript, Prisma, and connects to a Postgres database. It leverages Cron Jobs to ensure timely updates and notifications.",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput --pretty",
"dev": "cross-env NODE_ENV=development nodemon",
"format": "prettier --write \"src/**/*.ts\"",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"postinstall": "prisma generate",
"resetdb": "npx prisma migrate reset --preview-feature",
"updatedb": "npx prisma db push",
"studio": "npx prisma studio"
},
"author": "Vishal Kumar 25267239+vishalx360@users.noreply.github.com",
"license": "MIT",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/cookie": "^9.3.1",
"@fastify/jwt": "^8.0.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^2.1.0",
"@joggr/fastify-prisma": "^1.2.2",
"@prisma/client": "^5.9.1",
"@t3-oss/env-core": "^0.7.3",
"argon2": "^0.31.2",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"fastify": "^4.26.0",
"fastify-plugin": "^4.5.1",
"fastify-type-provider-zod": "^1.1.9",
"twilio": "^4.21.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.16",
"cross-env": "^7.0.3",
"fastify-tsconfig": "^2.0.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"prisma": "^5.9.1",
"rimraf": "^5.0.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}