Skip to content
Snippets Groups Projects
Commit 775be4da authored by Yi Ding's avatar Yi Ding
Browse files

add next as a dev dep on lint rules

parent fcd70abc
Branches
Tags
No related merge requests found
......@@ -9,6 +9,12 @@ module.exports = {
},
],
},
// NOTE I think because we've temporarily removed all of the NextJS stuff
// from the turborepo not having next in the devDeps causes an error on only
// clean clones of the repo
// Not sure if this is a missing dependency in the package.json or just my not
// understanding how turborepo is supposed to work.
// Anyways, planning to add back a Next.JS example soon
parserOptions: {
babelOptions: {
presets: [require.resolve("next/babel")],
......
......@@ -6,10 +6,13 @@
"dependencies": {
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "7.28.0",
"eslint-config-turbo": "^1.9.3"
"eslint-config-turbo": "^1.9.3",
"eslint-plugin-react": "7.28.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"next": "^13.4.10"
}
}
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment