Skip to content

Commit

Permalink
Add init project
Browse files Browse the repository at this point in the history
  • Loading branch information
midudev committed Aug 15, 2023
1 parent edd1519 commit 0ffb2a2
Show file tree
Hide file tree
Showing 5 changed files with 2,831 additions and 119 deletions.
27 changes: 25 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
{
"extends": "next/core-web-vitals"
}
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"standard-with-typescript",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"react"
],
"rules": {
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-misused-promises": "off"
}
}
14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,27 @@
"lint": "next lint"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "0.7.4",
"@supabase/supabase-js": "2.32.0",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"eslint": "8.47.0",
"eslint-config-next": "13.4.16",
"next": "13.4.16",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "8.47.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.1",
"typescript": "5.1.6"
}
}
Loading

0 comments on commit 0ffb2a2

Please sign in to comment.