diff --git a/apps/web/.eslintrc.js b/apps/web/.eslintrc.js index c8df607..64dac24 100644 --- a/apps/web/.eslintrc.js +++ b/apps/web/.eslintrc.js @@ -1,4 +1,4 @@ module.exports = { root: true, - extends: ["custom"], -}; + extends: ['../../node_modules/@maons/lint'] +} diff --git a/apps/web/package.json b/apps/web/package.json index bc127f9..1b13814 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -9,19 +9,19 @@ "lint": "next lint" }, "dependencies": { - "next": "13.0.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "next": "13.1.1", + "react": "18.2.0", + "react-dom": "18.2.0", "ui": "*" }, "devDependencies": { - "@babel/core": "^7.0.0", - "eslint": "7.32.0", - "eslint-config-custom": "*", + "@babel/core": "7.20.7", + "@maons/lint": "*", "tsconfig": "*", - "@types/node": "^17.0.12", - "@types/react": "^18.0.22", - "@types/react-dom": "^18.0.7", - "typescript": "^4.5.3" - } + "@types/node": "18.11.17", + "@types/react": "18.0.26", + "@types/react-dom": "18.0.10", + "typescript": "4.9.4" + }, + "prettier": "@maons/lint/.prettierrc.js" } diff --git a/apps/web/pages/index.tsx b/apps/web/pages/index.tsx index 6ec0887..ecee9f0 100644 --- a/apps/web/pages/index.tsx +++ b/apps/web/pages/index.tsx @@ -1,4 +1,4 @@ -import { Button } from "ui"; +import {Button} from 'ui' export default function Web() { return ( @@ -6,5 +6,5 @@ export default function Web() {

Web