-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 3.12 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
{
"name": "github-stats",
"version": "0.1.0",
"private": true,
"homepage": "https://stats.hyo.dev",
"scripts": {
"dev:next": "NODE_OPTIONS='--inspect' next dev",
"dev": "concurrently \"bun dev:next\" \"tailwindcss --input ./styles/root.css --output ./styles/output.css --watch\"",
"build": "tailwindcss ./styles/root.css --output ./styles/output.css && bun generate:prisma && next build",
"export": "next export",
"start": "next start",
"lint": "next lint && bun eslint",
"eslint": "eslint --ext .ts,.tsx,.js,.jsx src server app",
"seed": "dotenv -e .env.local -- prisma db seed",
"migrate:dev": "dotenv -e .env.dev -- prisma migrate dev",
"migrate:staging": "dotenv -e .env.local -- prisma migrate deploy",
"migrate:prod": "dotenv -e .env.prod -- prisma migrate deploy",
"generate:prisma": "prisma generate",
"generate:supabase": "npx supabase gen types typescript --project-id $SUPABASE_PROJECT_DOOBOOIO_STAGING --schema public > src/types/supabase.ts",
"generate": "bun generate:prisma && bun generate:supabase",
"test": "vitest"
},
"dependencies": {
"@amplitude/analytics-browser": "1.10.3",
"@amplitude/analytics-node": "1.1.6",
"@crello/react-lottie": "^0.0.11",
"@formatjs/intl-localematcher": "^0.5.2",
"@primer/octicons-react": "^19.8.0",
"@prisma/client": "^5.6.0",
"@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",
"axios": "^1.6.2",
"client-only": "^0.0.1",
"negotiator": "^0.6.3",
"next": "v14.0.3",
"next-auth": "^4.24.5",
"next-pwa": "^5.6.0",
"prisma": "^5.6.0",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-hamburger-menu": "^1.2.1",
"react-hook-form": "^7.48.2",
"react-simple-snackbar": "^1.1.11",
"react-text-transition": "^3.1.0",
"server-only": "^0.0.1",
"tiny-invariant": "^1.3.1",
"typescript": "5.2.2",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/react": "^14.1.2",
"@types/negotiator": "^0.6.3",
"@types/node": "^20.9.5",
"@types/react": "18.2.38",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "18.2.17",
"@types/react-hamburger-menu": "^0.0.6",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.16",
"clsx": "^2.0.0",
"commitlint-plugin-function-rules": "^3.0.0",
"concurrently": "^8.2.2",
"dotenv-cli": "^7.3.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"flatten-tailwindcss-theme": "^1.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"supabase": ">=1.60.2",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"vitest": "^0.34.6"
},
"prisma": {
"seed": "ts-node --transpile-only ./prisma/seed.ts"
}
}