Skip to content

Commit 54c274d

Browse files
committed
Updated project dependencies
1 parent 5b57ca1 commit 54c274d

16 files changed

Lines changed: 10643 additions & 12293 deletions

File tree

.cursor/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"plugins": {
3+
"firebase": {
4+
"enabled": true
5+
}
6+
}
7+
}

auth-activity-feeds/functions/.eslintrc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,19 @@ module.exports = {
1515
],
1616
parser: "@typescript-eslint/parser",
1717
parserOptions: {
18-
project: ["tsconfig.json", "tsconfig.dev.json"],
18+
project: ["tsconfig.json"],
1919
sourceType: "module",
2020
},
2121
ignorePatterns: [
2222
"/lib/**/*", // Ignore built files.
23+
".eslintrc.js",
2324
],
2425
plugins: ["@typescript-eslint", "import"],
2526
rules: {
2627
quotes: ["error", "double"],
2728
"import/no-unresolved": 0,
2829
"@typescript-eslint/no-non-null-assertion": 0,
30+
"valid-jsdoc": 0,
31+
"require-jsdoc": 0,
2932
},
3033
};

auth-activity-feeds/functions/package-lock.json

Lines changed: 761 additions & 510 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auth-activity-feeds/functions/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "functions",
33
"scripts": {
44
"prepare": "npm run build",
5-
"lint": "eslint --ext .js,.ts .",
5+
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint .",
66
"build": "tsc",
77
"serve": "npm run build && firebase emulators:start --only functions",
88
"shell": "npm run build && firebase functions:shell",
@@ -15,20 +15,20 @@
1515
},
1616
"main": "lib/index.js",
1717
"dependencies": {
18-
"firebase-admin": "^13.0.2",
19-
"firebase-functions": "^6.2.0",
20-
"getstream": "^8.1.0",
21-
"typescript": "^5.7.3"
18+
"firebase-admin": "^13.7.0",
19+
"firebase-functions": "^7.2.2",
20+
"getstream": "^8.12.1",
21+
"typescript": "^5.9.3"
2222
},
2323
"devDependencies": {
24-
"@typescript-eslint/eslint-plugin": "^8.21.0",
25-
"@typescript-eslint/parser": "^8.21.0",
26-
"eslint": "^9.18.0",
24+
"@typescript-eslint/eslint-plugin": "^8.57.2",
25+
"@typescript-eslint/parser": "^8.57.2",
26+
"eslint": "^9.39.4",
2727
"eslint-config-google": "^0.14.0",
28-
"eslint-config-prettier": "^10.0.1",
29-
"eslint-plugin-import": "^2.26.0",
30-
"firebase-functions-test": "^3.0.0",
31-
"prettier": "^3.4.2"
28+
"eslint-config-prettier": "^10.1.8",
29+
"eslint-plugin-import": "^2.32.0",
30+
"firebase-functions-test": "^3.4.1",
31+
"prettier": "^3.8.1"
3232
},
3333
"private": true
3434
}

auth-chat/functions/.eslintrc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,19 @@ module.exports = {
1515
],
1616
parser: "@typescript-eslint/parser",
1717
parserOptions: {
18-
project: ["tsconfig.json", "tsconfig.dev.json"],
18+
project: ["tsconfig.json"],
1919
sourceType: "module",
2020
},
2121
ignorePatterns: [
2222
"/lib/**/*", // Ignore built files.
23+
".eslintrc.js",
2324
],
2425
plugins: ["@typescript-eslint", "import"],
2526
rules: {
2627
quotes: ["error", "double"],
2728
"import/no-unresolved": 0,
2829
"@typescript-eslint/no-non-null-assertion": 0,
30+
"valid-jsdoc": 0,
31+
"require-jsdoc": 0,
2932
},
3033
};

0 commit comments

Comments
 (0)