-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "nextwind",
"description": "Introducing a powerful and efficient full-stack web development starter project built with TypeScript, Next.JS, Supabase, PostgreSQL, TailwindCSS, and Zustand!",
"repository": "https://github.com/en3sis/nextwind",
"version": "1.0.0",
"author": "en3sis",
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier --write '**/*.tsx' '**/*.ts'",
"prepare": "husky install"
},
"dependencies": {
"@next-auth/supabase-adapter": "^0.2.1",
"@supabase/supabase-js": "^2.37.0",
"@types/jsonwebtoken": "^9.0.3",
"contentlayer": "^0.3.4",
"eslint-config-prettier": "^8.10.0",
"framer-motion": "^10.16.4",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.2",
"next": "^13.5.4",
"next-auth": "^4.23.2",
"next-contentlayer": "^0.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.4.2"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@types/react": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.16",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}