-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.7 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
{
"name": "llm-eval-platform",
"type": "module",
"version": "2.0.0",
"devDependencies": {
"@eslint/js": "^9.33.0",
"concurrently": "^8.2.2",
"eslint": "^9.33.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "3.6.2",
"typescript-eslint": "^8.39.1"
},
"description": "LLM Content Evaluation Platform - Monorepo",
"engines": {
"node": ">=20.0.0",
"bun": ">=9.0.0"
},
"packageManager": "pbun@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"private": true,
"scripts": {
"dev": "concurrently \"bun run dev:frontend\" \"bun run dev:backend\"",
"dev:frontend": "cd frontend && bun run dev",
"dev:backend": "cd backend && bun run dev",
"typecheck": "tsc --build",
"lint": "concurrently \"bun run lint:frontend\" \"bun run lint:backend\"",
"lint:fix": "concurrently \"bun run lint:fix:frontend\" \"bun run lint:fix:backend\"",
"lint:frontend": "cd frontend && bun run lint",
"lint:backend": "cd backend && bun run lint",
"lint:fix:frontend": "cd frontend && npm run lint:fix",
"lint:fix:backend": "cd backend && npm run lint:fix",
"format": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"check": "concurrently \"npm run lint\" \"npm run format:check\"",
"fix": "concurrently \"npm run lint:fix\" \"npm run format:fix\""
},
"workspaces": [
"frontend",
"backend"
],
"dependencies": {
"@types/uuid": "^10.0.0"
}
}