-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.81 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@bruhno/homepage",
"description": "My personal portfolio and playground",
"homepage": "https://bruhno.com",
"author": "Nicolai Bruhn Lauritsen <mail@bruhno.com> (https://bruhno.com)",
"license": "MIT",
"private": true,
"engines": {
"node": ">=22.13.0",
"pnpm": ">=9.15.5"
},
"packageManager": "pnpm@9.15.5",
"browserslist": ["last 2 versions", "not dead", "not op_mini all", "node > 20"],
"scripts": {
"build:analyze": "cross-env ANALYZE_BUILD=true next build",
"build:debug": "next build --debug",
"build:env": "node scripts/createEnv.js",
"build:ladle": "ladle build",
"build:next": "next build",
"build:profile": "next build --profile",
"build:sitemap": "node scripts/createSitemap.js",
"build": "concurrently -p \"[{name}]\" -n \"next,sitemap,env,ladle\" -c \"blue,yellow,cyan,white\" -s \"all\" \"pnpm build:next\" \"pnpm build:sitemap\" \"pnpm verify:env\" \"pnpm build:ladle\"",
"db:studio": "prisma studio",
"db:generate-schema": "prisma generate",
"db:migrate": "prisma migrate dev --name",
"debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"dev:ladle": "ladle serve",
"dev:next": "next",
"dev": "concurrently -p \"[{name}]\" -n \"next,ladle\" -c \"blue,white\" -s \"all\" -k \"true\" \"pnpm dev:next\" \"pnpm dev:ladle\"",
"lint:biome": "biome check --diagnostic-level=error --max-diagnostics=1000 --write",
"lint:tsc": "tsc --project tsconfig.json --noEmit",
"lint": "concurrently -p \"[{name}]\" -n \"biome,tsc\" -c \"magenta,blue\" -s \"all\" -r \"pnpm lint:biome\" \"pnpm lint:tsc\"",
"trace:generate": "tsc --project tsconfig.json --noEmit --generateTrace traceDir",
"trace:analyze": "analyze-trace traceDir",
"postinstall": "pnpm db:generate-schema",
"start": "next start",
"start:amqp": "sudo lavinmq -D /var/lib/lavinmq",
"start:redis": "sudo service redis-server start",
"test": "jest",
"verify:env": "node scripts/verifyEnv.js"
},
"dependencies": {
"@cloudamqp/amqp-client": "3.1.1",
"@floating-ui/react": "0.27.4",
"@hookform/resolvers": "4.0.0",
"@nivo/core": "0.88.0",
"@nivo/line": "0.88.0",
"@node-rs/argon2": "2.0.2",
"@node-rs/jsonwebtoken": "0.5.9",
"@prisma/client": "6.3.1",
"@react-aria/focus": "3.19.1",
"@react-aria/interactions": "3.23.0",
"@react-hook/media-query": "1.1.1",
"@react-three/drei": "9.121.5",
"@react-three/fiber": "9.0.0-rc.5",
"@sentry/nextjs": "7.116.0",
"@sentry/tracing": "7.120.3",
"@tabler/icons-react": "3.30.0",
"@vercel/analytics": "1.5.0",
"@vercel/speed-insights": "1.2.0",
"cookie": "1.0.2",
"date-fns": "4.1.0",
"downshift": "9.0.8",
"es-toolkit": "1.32.0",
"ioredis": "5.5.0",
"jsonwebtoken": "9.0.2",
"match-sorter": "8.0.0",
"next": "15.1.7",
"next-connect": "0.13.0",
"otplib": "12.0.1",
"qrcode": "1.5.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"react-lite-youtube-embed": "2.4.0",
"react-remove-scroll": "2.6.3",
"react-textarea-autosize": "8.5.7",
"resize-observer-polyfill": "1.5.1",
"styled-components": "6.1.15",
"superstruct": "2.0.2",
"swr": "2.3.2",
"three": "0.173.0",
"ts-custom-error": "3.3.1",
"undici": "7.3.0",
"uuid": "11.0.5",
"zod": "3.24.2",
"zustand": "5.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ducanh2912/next-pwa": "10.2.9",
"@emotion/is-prop-valid": "1.3.1",
"@ladle/react": "5.0.1",
"@next/bundle-analyzer": "15.1.7",
"@sentry/types": "7.116.0",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.8",
"@types/node": "22.13.4",
"@types/qrcode": "1.5.5",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/supertest": "6.0.2",
"@types/three": "0.173.0",
"@types/uuid": "10.0.0",
"@typescript/analyze-trace": "0.10.1",
"concurrently": "9.1.2",
"dotenv": "16.4.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-mocks-http": "1.16.2",
"postcss-styled-syntax": "0.7.1",
"prisma": "6.3.1",
"react-inspector": "6.0.2",
"supabase": "2.12.1",
"supertest": "7.0.0",
"type-fest": "4.34.1",
"typescript": "5.7.3",
"vite": "6.1.0",
"web-streams-polyfill": "4.1.0",
"webpack": "5.98.0",
"zx": "8.3.2"
},
"pnpm": {
"patchedDependencies": {
"styled-components": "patches/styled-components.patch",
"@node-rs/argon2": "patches/@node-rs__argon2.patch"
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@prisma/client",
"@prisma/engines",
"@sentry/cli",
"@swc/core",
"@vercel/speed-insights",
"esbuild",
"msw",
"prisma",
"sharp",
"supabase"
]
}
}