This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.56 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
{
"name": "functions",
"scripts": {
"lint": "eslint src/ --ext .ts",
"build": "tsc",
"start": "nodemon --watch src -e ts --exec 'npm run build && firebase emulators:start --only functions,hosting'",
"get-config": "firebase functions:config:get > .runtimeconfig.json",
"deploy-apigee": "./scripts/deploy-apigee.sh",
"deploy:staging": "firebase deploy --only functions -P entur-mobility-staging",
"deploy:prod": "firebase deploy --only functions -P entur-mobility && npm run upload-docs",
"stage-heatmap": "firebase deploy --only hosting -P entur-mobility-staging",
"logs": "firebase functions:log",
"docz:dev": "docz dev",
"docz:build": "docz build",
"upload-docs": "rsync -R **/*.mdx temp-docs && gsutil -m rsync -r temp-docs gs://entur-docs.appspot.com/mobility && rm -rf temp-docs"
},
"main": "lib/index.js",
"dependencies": {
"@types/superagent": "^4.1.8",
"firebase-admin": "^8.13.0",
"firebase-functions": "^3.7.0",
"superagent": "^5.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"apigeetool": "^0.14.2",
"docz": "1.2.0",
"docz-theme-default": "1.2.0",
"eslint": "^7.3.1",
"eslint-plugin-prettier": "^3.1.4",
"firebase-tools": "^8.14.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
},
"private": true,
"engines": {
"node": "10"
}
}