-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
{
"name": "pieshop",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"db:pull-local": "supabase db pull --local",
"db:pull-prod": "supabase db pull --linked",
"db:push-local": "supabase db push --local",
"db:push-prod": "supabase db push",
"db:types": "npx supabase gen types typescript --local > src/types/supabase.ts",
"dev": "sst dev next dev",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"lint": "next lint",
"preinstall": "npx only-allow pnpm",
"sb:start": "supabase start",
"sb:stop": "supabase stop",
"start": "next start",
"sso": "aws sso login --sso-session=4rl",
"load-secrets:prod": "sst secret load ./prod.env --stage=production",
"load-secrets:local": "sst secret load ./secrets.env",
"deploy:prod": "sst deploy --stage=production"
},
"dependencies": {
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "^2.42.0",
"clsx": "^2.1.0",
"drizzle-orm": "^0.30.8",
"drizzle-zod": "^0.5.1",
"next": "14.1.4",
"postgres": "^3.4.4",
"react": "^18",
"react-dom": "^18",
"react-qr-code": "^2.0.12",
"react-qr-reader": "3.0.0-beta-1",
"react-typed": "^2.0.12",
"sst": "ion",
"zod": "^3.23.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.20.14",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"supabase": ">=1.8.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}