Skip to content

Update README.md #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Nextbase Lite is a simple Next.js 13 + Supabase boilerplate. It includes a Next.
5. Link Supabase to your project using `yarn supabase link --project-ref <project-ref>`. You can get your project ref from the Supabase Project dashboard (Project Settings -> API)
6. Duplicate `.env.local.example` and rename it to `.env.local` and add the Project ref, Supabase URL and anon key.
7. Push the database schema to your Supabase project using `yarn supabase db push`.
8. Generate types for your Supabase tables using `yarn generate:types:local`.
8. Generate types for your Supabase tables using `yarn generate:types:local` (if in Microsoft, run with WSL).
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies for not knowing. But what is WSL?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you probably know by now but wsl is windows subsystem for linux. Are you going to approve this pr?

9. Run `yarn dev` to start the development server.

### Testing
Expand Down
66 changes: 33 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,57 +21,57 @@
"postbuild": "next-sitemap --config next-sitemap.config.cjs"
},
"dependencies": {
"@commitlint/config-conventional": "^17.4.4",
"@headlessui/react": "^1.7.11",
"@heroicons/react": "^2.0.16",
"@supabase/auth-helpers-nextjs": "^0.5.4",
"@commitlint/config-conventional": "^17.6.3",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@supabase/auth-helpers-nextjs": "^0.6.1",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/supabase-js": "^2.8.0",
"@tanstack/react-query": "^4.24.10",
"next": "^13.2.1",
"next-seo": "^5.15.0",
"next-sitemap": "^3.1.52",
"@supabase/supabase-js": "^2.21.0",
"@tanstack/react-query": "^4.29.7",
"next": "^13.4.2",
"next-seo": "^6.0.0",
"next-sitemap": "^4.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"tailwindcss": "^3.2.7",
"react-hot-toast": "^2.4.1",
"tailwindcss": "^3.3.2",
"url-join": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/cz-commitlint": "^17.4.4",
"@next/eslint-plugin-next": "^13.1.6",
"@playwright/test": "^1.31.0",
"@semantic-release/changelog": "^6.0.2",
"@commitlint/cli": "^17.6.3",
"@commitlint/cz-commitlint": "^17.5.0",
"@next/eslint-plugin-next": "^13.4.2",
"@playwright/test": "^1.33.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^14.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.28",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"@types/react": "18.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitejs/plugin-react": "^4.0.0",
"commitizen": "^4.3.0",
"concurrently": "^7.6.0",
"concurrently": "^8.0.1",
"env-cmd": "^10.1.0",
"eslint": "^8.34.0",
"eslint": "^8.40.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"npm-check-updates": "^16.7.5",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"semantic-release": "^20.1.0",
"supabase": "^1.38.6",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"npm-check-updates": "^16.10.12",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"supabase": "^1.58.1",
"tailwindcss-cli": "^0.1.2",
"tsc-files": "^1.1.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
"typescript": "^5.0.4",
"vitest": "^0.31.0"
},
"config": {
"commitizen": {
Expand Down
Loading