-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.59 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
{
"name": "planbridge",
"version": "0.0.0-development",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@storybook/react-vite": "^10.2.14",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/browser-playwright": "^4.0.18",
"babel-plugin-react-compiler": "^1.0.0",
"fishery": "^2.4.0",
"handlebars": "^4.7.9",
"lucide-react": "^1.16.0",
"neverthrow": "^8.2.0",
"pino": "^10.3.1",
"playwright": "^1.58.2",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwindcss": "^4.3.0",
"vite": "^6.2.0",
"vite-plugin-singlefile": "^2.0.3",
"vitest": "^4.0.18",
"zod": "^4.3.6"
}
},
"scripts": {
"dev": "bun run --cwd packages/cli dev",
"build": "just build",
"test": "bun run --cwd packages/shared test && bun run --cwd packages/context test && bun run --cwd packages/server test && bun run --cwd packages/storage test && bun run --cwd packages/ui test && bun run --cwd packages/harness test && bun run --cwd packages/skills test && bun run --cwd packages/cli test && bun run --cwd packages/annotation test && bun run --cwd packages/review test && bun run --cwd packages/website test",
"typecheck": "bun run --filter '*' typecheck",
"prelint": "bun run --cwd packages/website astro sync",
"lint": "eslint . --max-warnings 0 --cache",
"prelint:fix": "bun run --cwd packages/website astro sync",
"lint:fix": "eslint . --fix --cache",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,json,astro}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx,json,astro}\"",
"skills:generate": "bun run --cwd packages/skills skills:generate",
"skills:check": "bun run --cwd packages/skills skills:check"
},
"prettier": "@contextbridge-ai/prettier-config",
"devDependencies": {
"@contextbridge-ai/eslint-config": "^0.0.0",
"@contextbridge-ai/prettier-config": "^0.0.0",
"@types/bun": "latest",
"@types/semver": "^7.7.0",
"@typescript-eslint/parser": "^8.60.1",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.4.1",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.6.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"semver": "^7.7.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.60.1"
}
}