-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 868 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 868 Bytes
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
{
"name": "agent-eval-loop-starter",
"private": true,
"workspaces": [
"api",
"web",
"evals"
],
"scripts": {
"seed": "npm run seed --workspace=api",
"reset": "npm run reset --workspace=api",
"test": "npm run test --workspace=api && npm run test --workspace=web",
"build": "npm run build --workspace=api && npm run build --workspace=web",
"typecheck": "npm run typecheck --workspace=api && npm run typecheck --workspace=web",
"lint": "eslint api/src web/src --ext .ts,.tsx"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.3",
"typescript": "^5.7.0",
"vite": "^8.0.0"
}
}