-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "status-labse",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:strict": "next lint --max-warnings 0",
"format:check": "prettier --check .",
"format:write": "prettier --write . && eslint . --fix",
"prepare": "husky install",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.6.1",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.4.2",
"@supabase/supabase-js": "^2.22.0",
"@types/node": "20.2.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"lucide-react": "^0.220.0",
"next": "13.4.3",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-router-dom": "^6.11.2",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"supabase": "^1.62.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,json}": [
"yarn prettier --write"
]
}
}