mirror of
https://github.com/zhigang1992/firecms.git
synced 2026-06-14 17:49:00 +08:00
30 lines
820 B
JSON
30 lines
820 B
JSON
{
|
|
"name": "functions",
|
|
"scripts": {
|
|
"lint": "tslint --project tsconfig.json",
|
|
"build": "tsc",
|
|
"serve": "npm run build && firebase serve --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": {
|
|
"axios": "^0.19.2",
|
|
"algoliasearch": "^4.1.0",
|
|
"firebase-admin": "^8.0.0",
|
|
"firebase-functions": "^3.1.0",
|
|
"firebase-tools": "^8.4.2",
|
|
"@google-cloud/firestore": "^3.8.4"
|
|
},
|
|
"devDependencies": {
|
|
"tslint": "^5.12.0",
|
|
"typescript": "^3.8.2"
|
|
},
|
|
"private": true
|
|
}
|