-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (63 loc) · 1.32 KB
/
package.json
File metadata and controls
64 lines (63 loc) · 1.32 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "18-the-wild-oasis-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prod": "next build && next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@supabase/supabase-js": "^2.45.1",
"date-fns": "^3.6.0",
"next": "14.2.5",
"next-auth": "^5.0.0-beta.20",
"react": "^18",
"react-day-picker": "^8.10.1",
"react-dom": "^18"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"prettier": "^3.3.3",
"postcss": "^8",
"tailwindcss": "^3.4.1"
},
"eslintConfig": {
"extends": [
"next",
"next/core-web-vitals",
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"quotes": [
"error",
"double"
]
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 80,
"tabWidth": 2
}
}