-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.3 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
{
"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 -i ./styles/root.css -o ./styles/output.css -w\"",
"build": "tailwindcss -i ./styles/root.css -o ./styles/output.css && bun generate:prisma && next build",
"export": "next export",
"start": "next start",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src server app",
"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_ID --schema public > src/types/supabase.ts",
"generate": "bun generate:prisma && bun generate:supabase",
"test": "vitest"
},
"dependencies": {
"@amplitude/analytics-browser": "2.31.3",
"@amplitude/analytics-node": "1.5.26",
"@formatjs/intl-localematcher": "^0.6.2",
"@primer/octicons-react": "^19.21.0",
"@prisma/client": "^6",
"@supabase/auth-helpers-react": "^0.15.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.86.0",
"axios": "^1.13.2",
"client-only": "^0.0.1",
"lottie-react": "^2.4.1",
"negotiator": "^1.0.0",
"next": "^16.0.5",
"next-auth": "^4.24.13",
"next-pwa": "^5.6.0",
"react": "^19.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^19.2.0",
"react-hamburger-menu": "^1.2.1",
"react-hook-form": "^7.66.1",
"react-hot-toast": "^2.6.0",
"react-text-transition": "^3.1.0",
"recharts": "^3.5.1",
"server-only": "^0.0.1",
"tiny-invariant": "^1.3.3",
"typescript": "5.9.3",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.10",
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "^16.3.0",
"@types/negotiator": "^0.6.4",
"@types/node": "^24.10.1",
"@types/react": "19.2.7",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "19.2.3",
"@types/react-hamburger-menu": "^0.0.6",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.14",
"autoprefixer": "^10.4.22",
"clsx": "^2.1.1",
"commitlint-plugin-function-rules": "^4.1.1",
"concurrently": "^9.2.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.5",
"flatten-tailwindcss-theme": "^1.0.0",
"husky": "^9.1.7",
"jsdom": "^25.0.0",
"postcss": "^8.5.6",
"prettier": "^3.7.1",
"prisma": "^6",
"supabase": ">=2.63.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3",
"ts-node": "^10.9.2",
"vitest": "^4.0.14"
},
"prisma": {
"seed": "ts-node --transpile-only ./prisma/seed.ts"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}