2
0

chore: upgrade packages

Also fixes sendEmail viewer e2e test
This commit is contained in:
Baptiste Arnaud
2022-08-29 08:51:45 +02:00
parent 43891b06aa
commit 57866c4aa3
11 changed files with 2585 additions and 1736 deletions

View File

@@ -5,13 +5,18 @@
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "pnpm rollup -c",
"dx": "pnpm rollup -c --watch",
"lint": "eslint --fix -c ./.eslintrc.js \"./src/**/*.ts*\""
},
"dependencies": {
"@stripe/react-stripe-js": "1.10.0",
"@stripe/stripe-js": "1.35.0",
"prop-types": "^15.8.1",
"qs": "^6.11.0",
"react-frame-component": "5.2.3",
"react-phone-number-input": "3.2.8",
"react-phone-number-input": "3.2.10",
"react-scroll": "^1.8.7",
"react-transition-group": "4.4.5",
"resize-observer": "^1.0.4"
@@ -20,21 +25,21 @@
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "8.3.4",
"@rollup/plugin-typescript": "8.4.0",
"@types/qs": "^6.9.7",
"@types/react": "18.0.17",
"@types/react-phone-number-input": "^3.0.14",
"@types/react-scroll": "^1.8.4",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.1",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"autoprefixer": "10.4.8",
"db": "workspace:*",
"eslint": "8.22.0",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react": "7.31.1",
"models": "workspace:*",
"postcss": "8.4.16",
"prettier": "2.7.1",
@@ -47,7 +52,7 @@
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "3.1.8",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"typescript": "^4.8.2",
"utils": "workspace:*"
},
"peerDependencies": {
@@ -56,10 +61,5 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"utils": "workspace:*"
},
"scripts": {
"build": "pnpm rollup -c",
"dx": "pnpm rollup -c --watch",
"lint": "eslint --fix -c ./.eslintrc.js \"./src/**/*.ts*\""
}
}

View File

@@ -4,14 +4,6 @@
"version": "0.1.0",
"main": "./index.ts",
"types": "./index.ts",
"devDependencies": {
"prisma": "4.2.1",
"typescript": "^4.7.4",
"dotenv-cli": "6.0.0"
},
"dependencies": {
"@prisma/client": "4.2.1"
},
"scripts": {
"dx": "dotenv -e ../../apps/builder/.env.local prisma db push && pnpm generate:schema && pnpm start:sutdio ",
"build": "pnpm generate:schema",
@@ -22,5 +14,13 @@
"migration:create": "dotenv -e ../../apps/builder/.env.local prisma migrate dev",
"migration:reset": "dotenv -e ../../apps/builder/.env.local prisma migrate reset",
"migration:deploy": "prisma migrate deploy"
},
"dependencies": {
"@prisma/client": "4.2.1"
},
"devDependencies": {
"prisma": "4.2.1",
"typescript": "^4.8.2",
"dotenv-cli": "6.0.0"
}
}

View File

@@ -6,26 +6,26 @@
"types": "dist/index.d.ts",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"build": "pnpm rollup -c",
"dx": "pnpm rollup -c --watch"
},
"dependencies": {
"zod": "^3.18.0"
},
"devDependencies": {
"typescript": "^4.7.4",
"typescript": "^4.8.2",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "8.3.4",
"@rollup/plugin-typescript": "8.4.0",
"rollup": "2.78.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"next": "12.2.5",
"db": "workspace:*"
},
"dependencies": {
"zod": "^3.18.0"
},
"peerDependencies": {
"next": "^12.0.0",
"db": "workspace:*"
},
"scripts": {
"build": "pnpm rollup -c",
"dx": "pnpm rollup -c --watch"
}
}

View File

@@ -12,11 +12,11 @@
"start:workspaces:migration:recover": "ts-node workspaceMigrationRecover.ts"
},
"devDependencies": {
"@types/node": "18.6.4",
"@types/node": "18.7.13",
"db": "workspace:*",
"models": "workspace:*",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"typescript": "^4.8.2",
"utils": "*"
}
}

View File

@@ -10,24 +10,22 @@
"test": "pnpm jest"
},
"devDependencies": {
"@rollup/plugin-typescript": "8.3.4",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.33.1",
"eslint": "8.22.0",
"jest-environment-jsdom": "^29.0.1",
"@rollup/plugin-typescript": "8.4.0",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"eslint": "8.23.0",
"eslint-plugin-functional": "^4.2.2",
"eslint-plugin-jest": "26.8.5",
"eslint-plugin-jest": "27.0.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest": "^29.0.1",
"prettier": "2.7.1",
"rollup": "2.78.1",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"jest-environment-jsdom": "^28.1.3"
"typescript": "^4.8.2"
}
}

View File

@@ -6,16 +6,20 @@
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "pnpm rollup -c",
"dx": "pnpm rollup -c --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "8.3.4",
"@rollup/plugin-typescript": "8.4.0",
"rollup": "2.78.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"aws-sdk": "2.1199.0",
"typescript": "^4.8.2",
"aws-sdk": "2.1204.0",
"models": "workspace:*",
"next": "12.2.5"
},
@@ -23,9 +27,5 @@
"aws-sdk": "^2.1152.0",
"models": "workspace:*",
"next": "^12.0.0"
},
"scripts": {
"build": "pnpm rollup -c",
"dx": "pnpm rollup -c --watch"
}
}