-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": ".",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"check": "ultracite check",
"fix": "ultracite fix",
"test": "turbo test",
"analyze": "turbo analyze",
"bump-deps": "bun x npm-check-updates --deep -u -x recharts && bun install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/design-system",
"clean": "git clean -xdf node_modules",
"env:init": "bun scripts/env.ts init",
"env:check": "bun scripts/env.ts check",
"env:push": "bun scripts/env.ts push",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@repo/typescript-config": "*",
"@turbo/gen": "^2.9.4",
"@types/node": "^25.5.2",
"lefthook": "^2.1.5",
"lint-staged": "^16.4.0",
"turbo": "^2.9.4",
"typescript": "^6.0.2",
"ultracite": "7.3.2",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.11",
"overrides": {
"parse5": "^7.2.1"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css}": "ultracite fix"
},
"dependencies": {
"dither-plugin": "^1.1.1"
}
}