mirror of
https://github.com/zhigang1992/firecms.git
synced 2026-06-14 01:34:55 +08:00
30 lines
859 B
JSON
30 lines
859 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": "tsc && firebase deploy --only functions --project=firecms-demo-27150",
|
|
"logs": "firebase functions:log"
|
|
},
|
|
"engines": {
|
|
"node": "14"
|
|
},
|
|
"main": "lib/index.js",
|
|
"dependencies": {
|
|
"@google-cloud/firestore": "^4.15.1",
|
|
"algoliasearch": "^4.9.1",
|
|
"axios": "^0.24.0",
|
|
"firebase-admin": "^10.0.0",
|
|
"firebase-functions": "^3.16.0",
|
|
"firebase-tools": "^9.23.0"
|
|
},
|
|
"devDependencies": {
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"private": true
|
|
}
|