-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
{
"name": "arkenv-monorepo",
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"dev": "turbo run dev --ui tui",
"typecheck": "turbo run typecheck",
"docs": "turbo run dev --filter=www",
"www": "turbo run dev --filter=www",
"release": "pnpm run build:packages && changeset publish",
"fix": "node bin/fix.js",
"fix:unsafe": "node bin/fix.js --unsafe",
"check": "biome check && manypkg check",
"check:errors": "biome check --diagnostic-level=error",
"clean": "turbo run clean && rimraf dist node_modules",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "turbo run test:e2e",
"test:e2e:report": "turbo run test:e2e:report",
"test:e2e:ui": "turbo run test:e2e:ui",
"test:e2e:update": "turbo run test:e2e:update",
"changeset": "changeset",
"size": "turbo run size",
"sync:examples": "node bin/sync-examples.js",
"sync:examples:check": "node bin/sync-examples.js --check",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@changesets/cli": "2.30.0",
"@manypkg/cli": "0.25.1",
"@playwright/test": "",
"@vitest/ui": "catalog:",
"all-contributors-cli": "^6.26.1",
"changesets-changelog-clean": "1.3.0",
"esbuild": "catalog:",
"rimraf": "catalog:",
"turbo": "2.9.5",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@sentry/cli",
"@tailwindcss/oxide",
"@vercel/speed-insights",
"bun",
"esbuild",
"sharp"
]
}
}