-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.16 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
{
"name": "hibernate",
"version": "2.0.0",
"description": "Accept hibernate requests and store them to be read and responded to by computers",
"type": "module",
"main": "index.js",
"repository": "https://github.com/clabinger/hibernate",
"author": "Cooper Labinger",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "npx eslint .",
"deploySetHibernateFlag": "gcloud functions deploy setHibernateFlag --gen2 --region=us-central1 --runtime=nodejs18 --source=. --entry-point=setHibernateFlag --trigger-http --allow-unauthenticated",
"deployReadHibernateFlag": "gcloud functions deploy readHibernateFlag --gen2 --region=us-central1 --runtime=nodejs18 --source=. --entry-point=readHibernateFlag --trigger-http --allow-unauthenticated",
"predeploy": "npm run lint",
"deploy": "npm run deploySetHibernateFlag && npm run deployReadHibernateFlag"
},
"dependencies": {
"@google-cloud/firestore": "^6.7.0",
"@google-cloud/functions-framework": "^3.2.0"
},
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5"
}
}