-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"main": "lib/src/index.js",
"scripts": {
"start": "npm run shell",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint --ext .js,.ts .",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"test": "npm run test-rules-emulators && npm run test-cloud-functions",
"test-rules": "mocha -r ts-node/register --reporter spec test/rules.ts",
"test-rules-emulators": "firebase emulators:exec --only firestore 'npm run test-rules --exit'",
"test-cloud-functions": "mocha -r ts-node/register --reporter spec test/**/*.ts --exclude test/rules.ts --exit"
},
"name": "functions",
"engines": {
"node": "20"
},
"dependencies": {
"@genkit-ai/ai": "^0.5.3",
"@genkit-ai/core": "^0.5.3",
"@genkit-ai/dotprompt": "^0.5.3",
"@genkit-ai/firebase": "^0.5.3",
"@genkit-ai/flow": "^0.5.3",
"@genkit-ai/googleai": "^0.5.3",
"@genkit-ai/vertexai": "^0.5.3",
"express": "^4.19.2",
"firebase-admin": "^12.1.1",
"firebase-functions": "^5.0.0",
"genkit": "^0.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^3.0.3",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4",
"firebase-functions-test": "^3.3.0",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"private": true
}