-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 913 Bytes
/
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
{
"name": "hit-notice-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node scrap.js",
"deploy-api": "gcloud functions deploy getNotices --runtime nodejs12 --trigger-http --allow-unauthenticated ",
"deploy-check-notice": "gcloud functions deploy checkNotices --runtime nodejs12 --trigger-topic check-notice",
"deploy-subscribe": "gcloud functions deploy subscribeClient --runtime nodejs12 --trigger-http --allow-unauthenticated",
"deploy": "npm run deploy-api && npm run deploy-check-notice && npm run deploy-subscribe"
},
"author": "Abhinav Kumar",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"firebase-admin": "^9.5.0",
"qs": "^6.9.6"
},
"devDependencies": {
"eslint": "^8.14.0"
}
}