-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.78 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
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
113
114
115
116
{
"name": "next-supabase-saas-kit",
"version": "0.11.16",
"private": true,
"sideEffects": false,
"scripts": {
"analyze": "ANALYZE=true next build",
"dev": "next dev | pino-pretty",
"dev:test": "NODE_ENV=test next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap",
"cypress": "NODE_ENV=test cypress open",
"cypress:headless": "NODE_ENV=test cypress run",
"supabase:start": "supabase start --ignore-health-check",
"supabase:stop": "supabase stop",
"supabase:stop:no-backup": "supabase stop --no-backup",
"supabase:db:reset": "supabase db reset",
"format": "prettier --write .",
"stripe:listen": "docker run --rm -it --name=stripe -v ~/.config/stripe:/root/.config/stripe stripe/stripe-cli:latest listen --forward-to http://host.docker.internal:3000/api/stripe/webhook",
"stripe:mock-server": "docker run --rm -it -p 12111-12112:12111-12112 stripe/stripe-mock:latest",
"typegen": "supabase gen types typescript --local > src/database.types.ts",
"typecheck": "tsc -b && tsc -b cypress",
"test:e2e": "sh ./scripts/test.sh",
"test:db": "supabase test db",
"test:reset:db": "supabase db reset && supabase test db --debug"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"printWidth": 80,
"singleQuote": true
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@next/bundle-analyzer": "^14.2.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.19",
"@sentry/node": "^7.108.0",
"@sentry/react": "^7.108.0",
"@stripe/react-stripe-js": "^2.7.1",
"@stripe/stripe-js": "^3.4.1",
"@supabase/ssr": "^0.5.0",
"@supabase/supabase-js": "2.45.1",
"@tanstack/react-table": "^8.17.3",
"clsx": "^2.1.1",
"contentlayer": "0.3.4",
"cva": "npm:class-variance-authority@^0.7.0",
"date-fns": "^3.6.0",
"edge-csrf": "^1.0.9",
"heroicons": "^2.1.3",
"i18next": "23.11.5",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.2",
"i18next-resources-to-backend": "^1.2.1",
"nanoid": "^5.0.7",
"next": "14.2.5",
"next-contentlayer": "0.3.4",
"next-sitemap": "^4.2.3",
"nodemailer": "^6.9.13",
"pino": "^9.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.51.5",
"react-i18next": "^14.1.2",
"react-top-loading-bar": "^2.3.1",
"recharts": "^2.12.7",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"server-only": "^0.0.1",
"sonner": "^1.4.41",
"stripe": "^15.8.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/i18next-fs-backend": "^1.1.5",
"@types/node": "20.11.30",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"cypress": "13.10.0",
"encoding": "^0.1.13",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"pino-pretty": "11.0.0",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"supabase": "^1.190.0",
"tailwindcss": "^3.4.10",
"typescript": "5.4.3"
},
"engines": {
"node": ">=18.17.0"
},
"overrides": {
"@typescript-eslint/parser": "6.13.2"
}
}