Skip to content

Commit

Permalink
chore: update firebase dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gregbrowndev committed May 10, 2024
1 parent ba1c7a3 commit 66e7bce
Show file tree
Hide file tree
Showing 6 changed files with 11,405 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .firebaserc
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
},
"etags": {},
"dataconnectEmulatorConfig": {}
}
}
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ _infrastructure/tests/build

# npm
node_modules
package-lock.json
#package-lock.json
npm-debug.log

# Sublime
Expand All @@ -46,11 +46,11 @@ npm-debug.log
.history

# yarn
yarn.lock
#yarn.lock

# pnpm
shrinkwrap.yaml
pnpm-lock.yaml
#pnpm-lock.yaml
pnpm-debug.log

# Output of 'npm pack'
Expand Down
3 changes: 2 additions & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"lint": "eslint --config .eslintrc.js --ext .ts ./",
"lint:fix": "yarn lint -- --fix",
"test": "jest --detectOpenHandles",
"generate": "graphql-codegen"
"generate": "graphql-codegen",
"clean": "rm -rf node_modules"
},
"main": "src/index.ts",
"exports": {
Expand Down
3 changes: 2 additions & 1 deletion apps/web-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
"@repo/server": "*",
"@urql/exchange-execute": "^2.2.2",
"@urql/next": "^1.1.1",
"firebase": "^10.11.1",
"firebase-admin": "^12.1.0",
"firebase-functions": "^5.0.0",
"firebase-functions": "^5.0.1",
"graphql": "^16.8.1",
"graphql-yoga": "^5.3.0",
"next": "14.2.3",
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,18 @@
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean && rm -rf node_modules",
"clean": "turbo run clean && rm -rf node_modules .firebase",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo run typecheck",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=docs^... && changeset publish"
"release": "turbo run build --filter=docs^... && changeset publish",
"firebase:kill": "npx kill-port 5002 8080 8085 9000 9099 9199"
},
"workspaces": {
"nohoist": ["**/@repo/server"],
"nohoist": [
"**/@repo/server"
],
"packages": [
"apps/*",
"packages/*"
Expand Down
Loading

0 comments on commit 66e7bce

Please sign in to comment.