-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
45
46
47
48
49
50
{
"name": "that-api-webhooks",
"version": "0.3.0",
"description": "THAT api automation webhooks",
"main": "index.js",
"scripts": {
"test": "mocha",
"start:watch": "nodemon --exec functions-framework --target=hooks",
"lint": "eslint . --ext .js",
"validate": "concurrently npm:test npm:lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/THATconference/that-api-webhook.git"
},
"keywords": [
"api",
"nodejs",
"gcp"
],
"author": "THAT Conference",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/THATconference/that-api-webhook/issues"
},
"homepage": "https://github.com/THATconference/that-api-webhook#readme",
"engines": {
"node": "20"
},
"dependencies": {
"@sentry/node": "^7.84.0",
"axios": "^1.6.2",
"chai-as-promised": "^7.1.1",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"chai": "^4.3.10",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1"
}
}