-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 841 Bytes
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
{
"name": "webhook",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "ts-node src/server.ts",
"dev": "nodemon --ext ts --exec ts-node src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@nestjs/core": "^11.0.12",
"@nestjs/mongoose": "^11.0.3",
"@nestjs/platform-express": "^11.0.12",
"axios": "^1.8.4",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"nodemailer": "^6.10.0",
"twilio": "^5.5.1"
},
"devDependencies": {
"@nestjs/cli": "^11.0.5",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^22.13.11",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}