-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 896 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 896 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
{
"name": "monnify-sample-webhook-nodejs",
"version": "1.0.0",
"description": "A sample Express-Nodejs Backend to show how to implement and process Monnify webhooks",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monnify/monnify-sample-webhook-nodejs.git"
},
"keywords": [
"monnify",
"webhook",
"nodejs",
"express"
],
"author": "Monnify Integrations Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/monnify/monnify-sample-webhook-nodejs/issues"
},
"homepage": "https://github.com/monnify/monnify-sample-webhook-nodejs#readme",
"dependencies": {
"@prisma/client": "^5.4.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.2",
"prisma": "^5.4.2"
}
}