pashto-dictionary/functions/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2021-08-18 11:54:00 +00:00
{
2022-10-12 07:35:48 +00:00
"name": "functions",
"scripts": {
"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",
"test": "jest"
2022-10-12 07:35:48 +00:00
},
"engines": {
2023-01-22 16:01:52 +00:00
"node": "18"
2022-10-12 07:35:48 +00:00
},
"main": "lib/functions/src/index.js",
"dependencies": {
2023-12-18 13:22:00 +00:00
"@aws-sdk/client-s3": "^3.474.0",
2024-01-08 07:34:34 +00:00
"@lingdocs/inflect": "7.0.9",
2022-10-12 07:35:48 +00:00
"@types/cors": "^2.8.10",
"@types/google-spreadsheet": "^3.0.2",
"@types/react": "^18.0.21",
"cors": "^2.8.5",
"firebase-admin": "^9.2.0",
"firebase-functions": "^3.24.1",
"google-spreadsheet": "^3.1.15",
"nano": "^9.0.3",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-bootstrap": "^1.5.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.5.12",
"firebase-functions-test": "^0.2.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
2022-10-12 07:35:48 +00:00
"typescript": "^4.6.3"
}
}