-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "product-decoder",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"gen:copy": "bun ./bin/gen/copyright.gen.ts",
"gen:docs": "bun ./bin/gen/jsdoc.gen.ts",
"lighthouse": "bun ./bin/light-house.ts",
"lint": "turbo run lint",
"pkg:costs": "bun ./bin/package-cost.ts",
"rm:dupes": "bun ./bin/remove-duplicate-packages.ts",
"test": "turbo run test",
"ts:shake": "bun ./bin/unused-tree-shake.ts",
"types": "turbo run check",
"update:sec": "bun ./bin/update-security-md.js",
"deps:install": "find . -type d \\( -name node_modules -o -name dist -o -name build -o -name .next -o -name '*-testing' \\) -prune -o -type f -name package.json -print0 | xargs -0 -I{} bash -c 'dir=\"$(dirname \"{}\")\"; echo \"\\n📦 Installing in $dir\"; cd \"$dir\" && bun install --no-save'"
},
"dependencies": {
"@clerk/nextjs": "^6.31.4",
"@google/genai": "^1.13.0",
"@tanstack/react-start": "^1.131.8",
"better-auth": "^1.3.5",
"concurrently": "^9.2.0",
"turbo": "^2.5.5"
},
"devDependencies": {
"@types/bun": "^1.2.20"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"packageManager": "bun@1.2.20",
"engines": {
"node": ">=24"
}
}