-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 5.14 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 5.14 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@darkroom.engineering/satus",
"version": "3.0.0",
"description": "Next.js 16 starter by darkroom.engineering — React 19, TypeScript strict, Tailwind v4, Zod validation, and production-ready integrations",
"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",
"prepare": "bun ./lib/scripts/prepare.ts",
"check": "oxlint --report-unused-disable-directives --max-warnings=0 && oxfmt --check && bun run lint:types && bun run ensure:typegen && bun node_modules/typescript/bin/tsc --noEmit && bun test --parallel && bun run test:oxlint-plugin && bun run manifest:check && bun run check:assets",
"clean": "rm -rf .next node_modules/.cache",
"lint": "oxlint --report-unused-disable-directives --max-warnings=0",
"lint:fix": "oxlint --fix --fix-suggestions",
"lint:types": "oxlint --type-aware --max-warnings=0",
"format": "oxfmt",
"ensure:typegen": "test -f next-env.d.ts && test -f .next/types/routes.d.ts && test -f .next/types/root-params.d.ts || next typegen",
"typecheck": "bun run ensure:typegen && bun node_modules/typescript/bin/tsc --noEmit",
"typecheck:watch": "bun run ensure:typegen && bun node_modules/typescript/bin/tsc --noEmit --watch",
"deslop": "deslop --ignore 'storybook-static/**'",
"analyze": "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",
"bench:nav": "bun ./lib/scripts/bench-navigation.ts",
"bench:rerender": "bun ./lib/scripts/bench-rerender.ts",
"setup:project": "bun ./lib/scripts/setup-project.ts",
"test": "bun test --parallel",
"test:e2e": "playwright test",
"test:oxlint-plugin": "for f in tools/oxlint/anti-slop/rules/*.ruletest.ts; do node $f || exit 1; done",
"test:setup": "bun test lib/scripts/setup-project.test.ts",
"doctor": "bun ./lib/scripts/doctor.ts",
"contrast:accept": "bun ./lib/styles/scripts/contrast-accept.ts",
"setup:styles": "bun ./lib/styles/scripts/setup-styles.ts",
"generate": "bun ./lib/scripts/generate.ts",
"generate:manifest": "bun ./lib/scripts/generate-manifest.ts",
"manifest:check": "bun ./lib/scripts/generate-manifest.ts --check",
"check:assets": "bun ./lib/scripts/check-assets.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",
"sanity:mcp": "bun ./lib/scripts/copy-sanity-mcp.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@base-ui/react": "^1.8.0",
"@gsap/react": "^2.1.2",
"@portabletext/react": "^8.0.1",
"@react-three/drei": "^10.7.8",
"@react-three/fiber": "^9.7.0",
"@sanity/asset-utils": "^2.3.0",
"@sanity/client": "^7.27.0",
"@sanity/image-url": "^2.1.1",
"@theatre/core": "^0.7.2",
"@vercel/analytics": "^2.0.1",
"clsx": "^2.1.1",
"gsap": "^3.15.0",
"hamo": "^1.0.3",
"lenis": "^1.3.26",
"next": "16.3.5",
"next-sanity": "^13.3.4",
"postprocessing": "^6.39.5",
"react": "19.3.0",
"react-dom": "19.3.0",
"tempus": "^1.0.0",
"three": "^0.186.0",
"zod": "^4.6.5",
"zustand": "^5.0.15"
},
"devDependencies": {
"@axe-core/playwright": "4.13.0",
"@clack/prompts": "^1.8.1",
"@csstools/postcss-global-data": "^4.0.0",
"@happy-dom/global-registrator": "^20.14.5",
"@next/bundle-analyzer": "16.3.5",
"@next/playwright": "16.3.5",
"@oxlint/plugins": "1.81.0",
"@playwright/test": "1.63.0",
"@sanity/vision": "^6.15.0",
"@storybook/addon-mcp": "^10.6.0",
"@storybook/nextjs-vite": "^10.6.0",
"@storybook/react": "^10.6.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/dom": "^10.4.2",
"@testing-library/react": "^16.3.3",
"@theatre/studio": "^0.7.2",
"@types/bun": "^1.4.2",
"@types/node": "^26.5.1",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@types/three": "^0.186.0",
"colorjs.io": "^0.7.1",
"deslop-cli": "^0.9.12",
"happy-dom": "^20.14.5",
"lefthook": "^2.1.14",
"oxfmt": "^0.68.0",
"oxlint": "^1.82.0",
"oxlint-tsgolint": "^7.0.2001",
"postcss-functions": "^4.0.2",
"postcss-preset-env": "^11.5.3",
"react-scan": "^0.5.7",
"sanity": "^6.15.0",
"storybook": "^10.6.0",
"tailwindcss": "^4.3.3",
"ts-morph": "^28.0.0",
"typescript": "^7.0.2"
},
"overrides": {
"playwright-core": "1.63.0"
},
"engines": {
"node": ">=24.20.0"
},
"packageManager": "bun@1.4.0",
"trustedDependencies": [
"oxlint",
"oxfmt",
"@swc/core",
"@tailwindcss/oxide",
"esbuild",
"lefthook",
"sharp"
]
}