-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) Β· 3.7 KB
/
package.json
File metadata and controls
110 lines (110 loc) Β· 3.7 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
{
"name": "stephen-asuncion",
"description": "stephen-asuncion",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "next dev -p 1337",
"dev:no-cache": "del-cli --force .next/cache && pnpm run dev",
"lint:next": "next lint",
"lint:types": "cross-env NODE_OPTIONS=--max-old-space-size=16384 tsc --pretty --noEmit",
"lint:format": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"lint": "pnpm run lint:next && pnpm run lint:types && pnpm run lint:format",
"lint:staged": "pnpm run lint:next && pnpm run lint:types && pnpm run lint:format",
"format": "prettier --write .",
"build": "next build",
"build:analyze": "cross-env ANALYZE=true pnpm run build",
"build:postbuild": "next-sitemap",
"node:switch": "for /f usebackq %i in (`type .nvmrc`) do nvm use %i",
"start": "next start",
"clean": "del-cli --force .next && del-cli --force node_modules",
"generate": "prisma generate",
"update": "ncu",
"prepare": "husky"
},
"dependencies": {
"@prisma/client": "^6.14.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-icons/all-files": "^4.1.0",
"@reduxjs/toolkit": "^2.5.0",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@supabase/supabase-js": "^2.56.0",
"@tailwindcss/postcss": "^4.0.14",
"@tanstack/react-query": "^5.85.3",
"@tanstack/react-query-devtools": "^5",
"@trpc/client": "^11.4.4",
"@trpc/next": "^11.4.4",
"@trpc/react-query": "^11.4.4",
"@trpc/server": "^11.4.4",
"@vercel/og": "^0.6.4",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^3.6.0",
"escape-string-regexp": "^5.0.0",
"geist": "^1.3.1",
"input-otp": "^1.4.2",
"isomorphic-dompurify": "^2.25.0",
"lucide-react": "^0.479.0",
"motion": "^12.23.12",
"next": "^14.2.22",
"next-seo": "^6.6.0",
"next-themes": "^0.4.6",
"postcss": "^8.5.3",
"posthog-js": "^1.306.1",
"react": "18.2.0",
"react-day-picker": "^9.7.0",
"react-dom": "18.2.0",
"react-redux": "^9.2.0",
"react-tooltip": "^5.28.0",
"recharts": "^2.15.1",
"stripe": "17.7.0",
"superjson": "^2.2.2",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.0.14",
"tailwindcss-animate": "^1.0.7",
"type-fest": "^4.31.0",
"uuid": "^11.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.22",
"@prettier/plugin-xml": "^3.4.1",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "20.11.20",
"@types/react": "18.2.60",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"eslint": "8.57.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"postcss-100vh-fix": "^1.0.2",
"prettier": "^3.5.3",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^6.14.0",
"sass": "^1.83.0",
"tailwind-scrollbar": "^4.0.1",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.5"
}