-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1002 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1002 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
36
{
"name": "eventfunnel",
"version": "1.0.0",
"description": "An Express server which receives and selectively filters webhook events from a Zoom JWT App, and then appends parsed data as a row in a Google Sheet.",
"main": "./src/server.js",
"scripts": {
"start": "node ./src/server.js",
"test": "jest --runInBand",
"watch": "jest --watch-all",
"lint": "eslint ./src/*.js",
"coverage": "c8 node ./src/*.js"
},
"author": "https://github.com/a-n-g-i-e-r-i",
"license": "MIT",
"engines": {
"node": "17.2.0"
},
"dependencies": {
"@google-cloud/local-auth": "^1.0.1",
"body-parser": "^1.19.1",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"googleapis": "^92.0.0",
"joi": "^17.6.0",
"path": "^0.12.7",
"winston": "^3.5.1"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"uuid": "^8.3.2"
}
}