-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.78 KB
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
54
55
{
"name": "open-app-builder-functions",
"author": "IDEMS International",
"license": "SEE LICENSE IN LICENSE",
"version": "1.0.0",
"scripts": {
"start": "npm run serve",
"serve": "npm-run-all --parallel build:watch emulators:start",
"lint": "eslint --ext .js,.ts .",
"build": "rimraf lib && tsc",
"build:watch": "tsc --watch",
"emulators:start": "firebase emulators:start --only functions,firestore --import=./test/seed-data --project test",
"emulators:export": "firebase emulators:export ./test/seed-data --project test",
"emulators:exec": "firebase emulators:exec --only firestore,auth --project test",
"shell": "npm run build && firebase functions:shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"test": "npm run emulators:exec jest",
"test:watch": "npm run emulators:exec \"jest --watch\""
},
"engines": {
"node": "22"
},
"lint-staged": {
"*.{ts,js,json}": "prettier --write"
},
"main": "lib/index.js",
"dependencies": {
"firebase-admin": "^12.6.0",
"firebase-functions": "^6.0.1",
"zod": "^3.25.74"
},
"devDependencies": {
"@jest/globals": "^28.1.3",
"@types/jest": "^27.5.2",
"@types/node": "^22.16.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.5.4",
"firebase-functions-test": "^3.1.0",
"firebase-tools": "^14.9.0",
"husky": "^9.1.7",
"jest": "^28.1.3",
"lint-staged": "^16.1.5",
"node-mocks-http": "^1.17.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^28.0.8",
"typescript": "^5.7.3"
}
}