-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.9 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.9 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "nextjs-saas-template",
"version": "1.0.0",
"description": "Production-ready Next.js SaaS template with multi-tenancy, auth, and payments",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint src/ --cache --cache-location .next/cache/eslint",
"lint:fix": "eslint src/ --cache --fix",
"format": "prettier --write src/ supabase/ *.md *.json",
"type-check": "tsc --noEmit",
"test": "vitest run",
"ci": "bun run lint; tsc --noEmit; knip; vitest run --silent",
"generate:types": "supabase gen types typescript --schema public --schema orgs --local > src/lib/supabase/types.ts && prettier --write src/lib/supabase/types.ts",
"migrate": "supabase db push --local --yes && bun run generate:types"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.5.0",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.540.0",
"next": "15.5.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@ingram-tech/eslint-plugin-recommended": "^1.0.0",
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/jest-dom": "^6.7.0",
"@types/node": "^24.3.0",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@vitejs/plugin-react": "^5.0.1",
"@vitest/ui": "^3.2.4",
"eslint": "^9",
"eslint-config-next": "^15.5.0",
"jsdom": "^26.1.0",
"knip": "^5.62.0",
"postcss": "^8",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-sql": "^0.19.2",
"supabase": "^2.34.3",
"tailwindcss": "^4.1.12",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"typescript-eslint": "^8.40.0",
"vitest": "^3.2.4",
"whatwg-fetch": "^3.6.20"
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
},
"knip": {
"ignore": [
"src/lib/supabase/types.ts",
"src/app/robots.tsx",
"src/scripts/embed-chatbot-standalone.ts",
"src/components/ui/**/*",
"supabase/functions/*/index.ts"
],
"ignoreDependencies": [
"@radix-ui/react-popover",
"react-email",
"eslint-config-next",
"tailwindcss",
"tailwindcss-animate",
"typescript-eslint"
]
},
"prettier": {
"trailingComma": "all",
"printWidth": 88,
"useTabs": true,
"tabWidth": 4,
"experimentalOperatorPosition": "start",
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-sql"
],
"indentStyle": "standard",
"language": "postgresql",
"overrides": [
{
"files": [
"*.yaml",
"*.yml"
],
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
}
}