-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 907 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "quickstart",
"description": "A boilerplate with Next.js, Style-Components, TanStack Query, Josh Comeau's CSS reset, and Supabase integration.",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettify": "prettier --write ."
},
"dependencies": {
"@supabase/supabase-js": "2.24.0",
"@tanstack/react-query": "4.29.12",
"babel-plugin-inline-dotenv": "1.7.0",
"next": "13.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "6.0.0-rc.3"
},
"devDependencies": {
"@types/node": "20.2.5",
"@types/react": "18.2.9",
"@types/react-dom": "18.2.4",
"eslint": "8.42.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "8.8.0",
"prettier": "2.8.8",
"typescript": "5.1.3"
}
}