mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
28 lines
682 B
JSON
28 lines
682 B
JSON
{
|
|
"name": "functions",
|
|
"scripts": {
|
|
"lint": "tslint --project tsconfig.json",
|
|
"build": "tsc",
|
|
"serve": "npm run build && firebase emulators:start --only functions",
|
|
"shell": "npm run build && firebase functions:shell",
|
|
"start": "npm run shell",
|
|
"deploy": "firebase deploy --only functions",
|
|
"logs": "firebase functions:log"
|
|
},
|
|
"engines": {
|
|
"node": "10"
|
|
},
|
|
"main": "lib/index.js",
|
|
"dependencies": {
|
|
"firebase-admin": "^8.10.0",
|
|
"firebase-functions": "^3.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"axios": "^0.19.2",
|
|
"firebase-functions-test": "^0.2.0",
|
|
"tslint": "^5.12.0",
|
|
"typescript": "^3.8.0"
|
|
},
|
|
"private": true
|
|
}
|