-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "messaging-api",
"version": "1.0.1",
"description": "Messaging API",
"main": "index.js",
"scripts": {
"build:check": "tsc",
"build": "tsup src/index.ts --sourcemap",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js"
},
"engines": {
"node": "18.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@flydotio/dockerfile": "^0.2.16",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.3.2",
"@types/node-fetch": "^2.6.9",
"nodemon": "^2.0.22",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsx": "^4.6.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@fastify/awilix": "^3.1.0",
"@fastify/cors": "^8.4.2",
"@fastify/jwt": "^7.2.0",
"@fastify/multipart": "^8.1.0",
"@prisma/client": "^5.0.0",
"awilix": "^8.0.1",
"dotenv": "^16.3.1",
"fastify": "^4.18.0",
"mime-types": "^2.1.35",
"tsup": "^7.2.0",
"whatsapp-web.js": "^1.34.6",
"zod": "^3.21.4"
}
}