-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 KB
/
package.json
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
{
"name": "boilerplate-cloud-functions-http",
"version": "1.0.0",
"description": "Boilerplate code to spin-up a new http-triggered Google Cloud Function",
"main": "src/index.js",
"scripts": {
"main": "src/index.js",
"test": "node_modules/.bin/jest",
"lint": "node_modules/.bin/eslint **/*.js --ignore-pattern node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buffolander/boilerplate-cloud-functions-http.git"
},
"keywords": [
"boilerplate",
"gcp",
"google cloud",
"cloud functions"
],
"author": {
"name": "buffolander",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/buffolander/boilerplate-cloud-functions-http/issues"
},
"homepage": "https://github.com/buffolander/boilerplate-cloud-functions-http#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"jest": "^24.7.1"
},
"dependencies": {
"@brdu/express-swagger": "^1.1.0",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.11",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31"
}
}