chore: update npm dependencies to latest version (#1651)

This commit is contained in:
Matti Nannt
2023-11-21 09:32:07 +01:00
committed by GitHub
parent 3f8bf4c34c
commit 7331d1dd5a
13 changed files with 803 additions and 734 deletions

View File

@@ -16,10 +16,8 @@ env:
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
@@ -38,7 +36,7 @@ jobs:
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
with:
cosign-release: 'v2.1.1'
cosign-release: "v2.1.1"
# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
@@ -71,6 +69,7 @@ jobs:
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
with:
context: .
file: ./apps/web/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@@ -1,6 +1,6 @@
{
"name": "@formbricks/web",
"version": "1.2.1",
"version": "1.3.1",
"private": true,
"scripts": {
"clean": "rimraf .turbo node_modules .next",
@@ -11,7 +11,6 @@
"lint": "next lint"
},
"dependencies": {
"@aws-sdk/s3-presigned-post": "^3.451.0",
"@formbricks/api": "workspace:*",
"@formbricks/database": "workspace:*",
"@formbricks/ee": "workspace:*",

View File

@@ -32,9 +32,9 @@
"@changesets/cli": "^2.26.2",
"eslint-config-formbricks": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"lint-staged": "^15.1.0",
"rimraf": "^5.0.5",
"tsx": "^3.13.0",
"tsx": "^4.2.0",
"turbo": "^1.10.16"
},
"lint-staged": {

View File

@@ -18,6 +18,6 @@
},
"dependencies": {
"@formbricks/lib": "workspace:*",
"stripe": "^14.4.0"
"stripe": "^14.5.0"
}
}

View File

@@ -8,7 +8,7 @@
"clean": "rimraf node_modules .turbo"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "latest",

View File

@@ -42,9 +42,9 @@
"@formbricks/surveys": "workspace:*",
"@formbricks/tsconfig": "workspace:*",
"@formbricks/types": "workspace:*",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@types/jest": "^29.5.9",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint-config-formbricks": "workspace:*",

View File

@@ -12,11 +12,12 @@
"lint:report": "eslint . --format json --output-file ../../lint-results/app-store.json"
},
"dependencies": {
"@formbricks/api": "*",
"@aws-sdk/client-s3": "3.451.0",
"@aws-sdk/s3-request-presigner": "3.451.0",
"@aws-sdk/s3-presigned-post": "^3.454.0",
"@aws-sdk/client-s3": "3.454.0",
"@aws-sdk/s3-request-presigner": "3.454.0",
"@t3-oss/env-nextjs": "^0.7.1",
"mime": "3.0.0",
"@formbricks/api": "*",
"@formbricks/database": "*",
"@formbricks/types": "*",
"@paralleldrive/cuid2": "^2.2.2",

View File

@@ -305,9 +305,7 @@ export const getPersonByUserId = async (environmentId: string, userId: string):
select: selectPerson,
});
return personWithUserId ? transformPrismaPerson(personWithUserId) : null;
/* if (personWithUserId) {
if (personWithUserId) {
return transformPrismaPerson(personWithUserId);
}
@@ -352,9 +350,9 @@ export const getPersonByUserId = async (environmentId: string, userId: string):
id: personWithUserIdAttribute.id,
environmentId,
userId,
});
});
return transformPrismaPerson(personWithUserIdAttribute); */
return transformPrismaPerson(personWithUserIdAttribute);
},
[`getPersonByUserId-${environmentId}-${userId}`],
{

View File

@@ -46,7 +46,7 @@
"devDependencies": {
"@types/express": "^4.17.21",
"@types/request-promise-native": "~1.0.21",
"@typescript-eslint/parser": "~6.11",
"@typescript-eslint/parser": "~6.12",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"n8n-core": "legacy",

View File

@@ -25,7 +25,7 @@
"devDependencies": {
"@formbricks/tsconfig": "workspace:*",
"@formbricks/types": "workspace:*",
"@preact/preset-vite": "^2.6.0",
"@preact/preset-vite": "^2.7.0",
"autoprefixer": "^10.4.16",
"eslint-config-formbricks": "workspace:*",
"postcss": "^8.4.31",

View File

@@ -7,9 +7,9 @@
"clean": "rimraf node_modules dist turbo"
},
"devDependencies": {
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"typescript": "^5.2.2"
"@types/node": "20.9.3",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.16",
"typescript": "^5.3.2"
}
}

View File

@@ -19,13 +19,13 @@
"@formbricks/surveys": "workspace:*",
"@formbricks/lib": "workspace:*",
"@heroicons/react": "^2.0.18",
"@lexical/code": "^0.12.2",
"@lexical/link": "^0.12.2",
"@lexical/list": "^0.12.2",
"@lexical/markdown": "^0.12.2",
"@lexical/react": "^0.12.2",
"@lexical/rich-text": "^0.12.2",
"@lexical/table": "^0.12.2",
"@lexical/code": "^0.12.4",
"@lexical/link": "^0.12.4",
"@lexical/list": "^0.12.4",
"@lexical/markdown": "^0.12.4",
"@lexical/react": "^0.12.4",
"@lexical/rich-text": "^0.12.4",
"@lexical/table": "^0.12.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
@@ -40,7 +40,7 @@
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"lexical": "^0.12.2",
"lexical": "^0.12.4",
"lucide-react": "^0.292.0",
"react-colorful": "^5.6.1",
"react-confetti": "^6.1.0",

1472
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff