-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.63 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "codra",
"version": "0.9.4",
"description": "Open-source code review engine",
"author": "Devarshi Shimpi",
"license": "AGPL-3.0-only",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/devarshishimpi/codra.git"
},
"homepage": "https://codra.run",
"bugs": {
"url": "https://github.com/devarshishimpi/codra/issues"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "vite build && npm run cf-typegen",
"build:packages": "npm run build -w @codraoss/schema && npm run build -w @codraoss/core && npm run build -w @codraoss/provider-github && npm run build -w @codraoss/db && npm run build -w @codraoss/models && npm run build -w @codraoss/api && npm run build -w @codraoss/ui",
"build:all": "npm run build --workspaces --if-present",
"cf-typegen": "cd apps/worker && wrangler types ./src/worker-env.d.ts",
"deploy": "npm run build && npm run migrate && cd apps/worker && wrangler deploy",
"dev": "concurrently -k -n CLIENT,WORKER -c cyan,green \"npm:dev:client\" \"npm:dev:worker\"",
"dev:client": "vite build --watch --mode development",
"dev:worker": "cd apps/worker && wrangler dev --local",
"lint": "eslint src test scripts packages apps",
"lint:all": "npm run lint --workspaces --if-present",
"start": "npm run dev",
"setup:cloudflare": "node scripts/setup-cloudflare.js",
"migrate": "node packages/db/scripts/migrate.mjs",
"test": "node scripts/test.mjs",
"test:all": "npm run test --workspaces --if-present",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:all": "npm run typecheck --workspaces --if-present",
"changeset": "changeset",
"version:packages": "changeset version",
"release": "npm run build:packages && changeset publish",
"check:exports": "node scripts/check-package-exports.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@changesets/cli": "^3.0.0",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"chalk": "^5.6.2",
"concurrently": "^9.2.4",
"eslint": "^10.8.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.0.2",
"ora": "^9.4.1",
"prompts": "^2.4.2",
"publint": "^0.3.23",
"tailwindcss": "^4.2.2",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.66.0",
"vite": "^8.0.8",
"vitest": "^4.1.10",
"wrangler": "^4.114.0"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@codraoss/api": "*",
"@codraoss/core": "*",
"@codraoss/db": "*",
"@codraoss/models": "*",
"@codraoss/provider-github": "*",
"@codraoss/schema": "*",
"@codraoss/ui": "*",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono": "^4.12.25",
"jsonrepair": "^3.15.0",
"lenis": "^1.3.26",
"lucide-react": "^1.8.0",
"motion": "^12.42.2",
"postgres": "^3.4.9",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.2",
"recharts": "^3.8.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"sugar-high": "^2.0.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"allowScripts": {
"esbuild": true,
"unrs-resolver@1.12.2": true,
"workerd@1.20260801.1": true
}
}