-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.81 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
{
"name": "dashframe",
"version": "0.2.0-alpha.0",
"private": true,
"type": "module",
"license": "AGPL-3.0-only",
"packageManager": "bun@1.3.5",
"workspaces": [
"apps/*",
"packages/*",
"libs/stdui/packages/*",
"libs/wystack/packages/*",
"e2e/*"
],
"overrides": {
"@duckdb/duckdb-wasm": "1.32.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write --loglevel=error"
},
"scripts": {
"setup": "git submodule update --init --recursive && bun install && bun run build:wystack",
"build:wystack": "bun run --cwd libs/wystack build",
"dev": "bun --filter @dashframe/desktop dev",
"dev:web": "turbo dev --filter=@dashframe/web...",
"dev:all": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"test:e2e": "turbo test:e2e",
"test:e2e:ci": "turbo test:e2e:ci",
"test:e2e:ui": "bun run --filter @dashframe/web-e2e test:ui",
"typecheck": "turbo typecheck",
"check:ticket-refs": "node scripts/check-no-ticket-refs.mjs",
"check": "bun run check:ticket-refs && turbo check --filter=!@wystack/*",
"clean": "turbo clean",
"storybook": "turbo storybook",
"build-storybook": "turbo build-storybook",
"prepare": "husky",
"changeset": "changeset",
"changeset:ai": "node scripts/ai-changeset.mjs",
"changeset:status": "changeset status",
"clawpatch": "scripts/clawpatch.sh",
"clawpatch:map": "scripts/clawpatch.sh map --source heuristic --json",
"clawpatch:review": "scripts/clawpatch.sh map --source heuristic --json && scripts/clawpatch.sh review --since origin/main --json --no-input",
"clawpatch:review:branch": "scripts/clawpatch-review-branch.sh",
"version": "changeset version && node scripts/annotate-web-changelog.mjs",
"release": "changeset publish"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@dashframe/eslint-config": "workspace:*",
"@types/bun": "^1.3.10",
"@types/eslint": "^9.6.0",
"@types/node": "^22.10.1",
"eslint": "^9.39.0",
"eslint-config-next": "16.0.10",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-sonarjs": "^3.0.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"shadcn": "^3.6.1",
"tailwindcss": "4.1.16",
"turbo": "^2.7.3",
"typescript": "5.7.2",
"typescript-eslint": "^8.46.2"
},
"dependencies": {
"convex": "^1.29.3"
}
}