-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "inspectorepo",
"version": "0.1.0",
"private": true,
"description": "A local web app that analyzes TypeScript + React codebases and produces structured code review suggestions",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,css,md}\"",
"typecheck": "tsc -b",
"build": "npm --ws run build --if-present",
"test": "vitest run",
"dev": "npm run dev --workspace=apps/web",
"repopack": "tsx ai/scripts/generate-repomix-exports.ts"
},
"engines": {
"node": "20.x"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@playwright/test": "^1.58.2",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "~5.6.0",
"vitest": "^4.0.18"
}
}