Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghislain89 committed Feb 4, 2024
1 parent df54827 commit b5bfa04
Show file tree
Hide file tree
Showing 4 changed files with 141 additions and 80 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": ["plugin:playwright/recommended", "next/core-web-vitals"]
}
182 changes: 130 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.11.3",
"axe-playwright": "^2.0.1",
"eslint-plugin-playwright": "^0.22.2",
"prisma": "5.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
Expand Down
35 changes: 8 additions & 27 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
{
"compilerOptions": {
"types": ["axe-playwright"],
"target": "ESNext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -23,29 +20,13 @@
}
],
"paths": {
"@/*": [
"./src/*"
],
"@/prisma/*": [
"./prisma/*"
],
"@/test/pages/*": [
"./playwright/support/page-objects/pages/*"
],
"@/test/fixtures/*": [
"./playwright/support/fixtures/*"
],

"@/*": ["./src/*"],
"@/prisma/*": ["./prisma/*"],
"@/test/pages/*": ["./playwright/support/page-objects/pages/*"],
"@/test/fixtures/*": ["./playwright/support/fixtures/*"]
},
"forceConsistentCasingInFileNames": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}

0 comments on commit b5bfa04

Please sign in to comment.