-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "meebox",
"version": "0.0.0",
"private": true,
"description": "AI code-review desktop client, local-first and semi-automatic, for individual reviewers, built on pr-agent",
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"test": "nx run-many -t test",
"typecheck": "nx run-many -t typecheck",
"graph": "nx graph",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,json,md,yaml,yml}\""
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@types/node": "^22.10.0",
"eslint": "^9.39.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^7.1.0",
"globals": "^16.0.0",
"nx": "22.7.5",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.0"
}
}