-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.03 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
{
"name": "imgnailer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"deploy": "npm run deploy:sign && npm run deploy:send && npm run deploy:purge",
"deploy:sign": "gcloud beta functions deploy thumb-sign --env-vars-file .env.sign.yaml --trigger-http --entry-point sign --runtime=nodejs8 --region=europe-west1",
"deploy:send": "gcloud beta functions deploy thumb-send --env-vars-file .env.send.yaml --trigger-http --entry-point send --runtime=nodejs8 --region=europe-west1",
"deploy:purge": "gcloud beta functions deploy thumb-purge --env-vars-file .env.send.yaml --trigger-http --entry-point send --runtime=nodejs8 --region=europe-west1",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"express": "^4.16.4",
"dotenv": "^6.2.0"
},
"dependencies": {
"aws-sdk": "^2.377.0",
"infer-values": "^1.0.1",
"json-cipher-url": "0.0.5",
"node-fetch": "^2.3.0",
"sharp": "^0.21.1"
}
}