-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.2 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
{
"name": "useflow",
"packageManager": "bun@1.2.23",
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"examples/*"
],
"catalog": {
"alchemy": "^0.77.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"@cloudflare/workers-types": "^4.20251014.0",
"@types/react": "~19.1.10",
"@types/react-dom": "^19.0.4",
"typescript": "^5.8.2",
"tsdown": "^0.15.5",
"@types/node": "^22.13.11",
"@vitest/ui": "^3.2.4",
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@testing-library/react": "^16.1.0",
"@testing-library/jest-dom": "^6.6.3",
"jsdom": "^26.0.0"
}
},
"scripts": {
"dev": "bun alchemy dev",
"deploy": "bun alchemy deploy",
"deploy:production": "bun alchemy deploy --stage production",
"check": "biome check --write .",
"build": "turbo build",
"build:docs": "bun run build --filter=docs",
"typecheck": "turbo typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"clean": "turbo clean && rm -rf .turbo node_modules dist",
"prepare": "husky || true",
"changeset": "changeset",
"version": "changeset version && bun scripts/sync-lockfile.ts",
"release": "bun run build && bun run release:publish",
"release:publish": "for dir in packages/*; do (cd \"$dir\" && bun publish --access public || true); done && changeset tag"
},
"devDependencies": {
"@biomejs/biome": "2.3.0",
"@changesets/cli": "^2.29.7",
"@cloudflare/workers-types": "catalog:",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"alchemy": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"tsdown": "catalog:",
"turbo": "^2.5.4",
"ultracite": "6.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "catalog:"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
}
}