-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 811 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 811 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
{
"name": "webhook-actions-example",
"version": "0.0.1",
"description": "An example Node.js server for handling Bavard webhook actions.",
"main": "index.js",
"scripts": {
"start": "ts-node server.ts",
"test": "ts-node test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bavard-ai/webhook-actions-example.git"
},
"author": "dev@bavard.ai",
"license": "MIT",
"bugs": {
"url": "https://github.com/bavard-ai/webhook-actions-example/issues"
},
"homepage": "https://github.com/bavard-ai/webhook-actions-example#readme",
"dependencies": {
"@bavard/agent-config": "^0.1.58",
"axios": "^0.24.0",
"express": "^4.17.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}