Skip to content

Commit

Permalink
fix: deps usage
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoralp committed Dec 26, 2022
1 parent 0a78fe2 commit c939948
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions apps/web/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: ["custom"],
};
extends: ['../../node_modules/@maons/lint']
}
22 changes: 11 additions & 11 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
4 changes: 2 additions & 2 deletions apps/web/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Button } from "ui";
import {Button} from 'ui'

export default function Web() {
return (
<div>
<h1>Web</h1>
<Button />
</div>
);
)
}

0 comments on commit c939948

Please # to comment.