-
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.62 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.62 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
{
"name": "@darkroom.engineering/satus",
"description": "Next.js 16 starter by darkroom.engineering — React 19, TypeScript strict, Tailwind v4, Zod validation, and production-ready integrations",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "bun ./lib/scripts/dev.ts",
"dev:https": "bun ./lib/scripts/dev.ts --https",
"build": "bun run setup:styles && next build",
"start": "next start",
"preview": "bun run build && next start",
"check": "biome check && tsgo --noEmit && bun test",
"clean": "rm -rf .next node_modules/.cache",
"lint": "biome lint --max-diagnostics=200",
"lint:fix": "biome lint --write --unsafe --max-diagnostics=200",
"format": "biome format --write .",
"typecheck": "tsgo --noEmit",
"typecheck:tsc": "tsc --noEmit --incremental false",
"typecheck:compare": "bun run typecheck:tsc && bun run typecheck",
"analyze": "cross-env ANALYZE=true bun run build",
"analyze:experimental": "next experimental-analyze",
"dev:inspect": "bun ./lib/scripts/dev.ts --inspect",
"lighthouse": "bunx @unlighthouse/cli --site http://localhost:3000",
"setup:project": "bun ./lib/scripts/setup-project.ts",
"test": "bun test",
"test:setup": "bun test lib/scripts/setup-project.test.ts",
"doctor": "bun ./lib/scripts/doctor.ts",
"docs:check": "bun ./lib/scripts/check-docs.ts",
"setup:styles": "bun ./lib/styles/scripts/setup-styles.ts",
"generate": "bun ./lib/scripts/generate.ts",
"handoff": "bun ./lib/scripts/prepare-handoff.ts",
"sanity:extract": "cd lib/integrations/sanity && bun --env-file ../../../.env.local sanity schema extract",
"sanity:typegen": "cd lib/integrations/sanity && bun --env-file ../../../.env.local sanity typegen generate && bun biome check --write --unsafe",
"sanity:mcp": "bun ./lib/scripts/copy-sanity-mcp.ts"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@portabletext/react": "^6.0.2",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@sanity/asset-utils": "^2.3.0",
"@sanity/image-url": "^2.0.3",
"@sanity/visual-editing": "^5.2.1",
"@vercel/analytics": "^2.0.1",
"clsx": "^2.1.1",
"gsap": "^3.14.2",
"hamo": "1.0.0-dev.13",
"lenis": "^1.3.17",
"next": "16.2.0",
"next-sanity": "^12.1.0",
"postprocessing": "^6.38.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"tempus": "1.0.0-dev.17",
"three": "0.183.2",
"tunnel-rat": "^0.1.2",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@clack/prompts": "^1.0.0",
"@csstools/postcss-global-data": "^4.0.0",
"@hubspot/api-client": "^13.4.0",
"@next/bundle-analyzer": "16.2.0",
"@sanity/vision": "^5.8.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@theatre/core": "^0.7.2",
"@theatre/studio": "^0.7.2",
"@types/bun": "^1.3.8",
"@types/node": "^25.2.1",
"@types/react": "19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.1",
"@typescript/native-preview": "^7.0.0-dev.20260206.1",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"lefthook": "^2.1.0",
"postcss-functions": "^4.0.2",
"postcss-preset-env": "^11.1.3",
"sanity": "^5.8.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@biomejs/biome",
"@swc/core",
"@tailwindcss/oxide",
"esbuild",
"lefthook",
"sharp"
],
"overrides": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21"
},
"packageManager": "bun@1.3.5"
}