-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "@eugene-plexus/ui",
"version": "0.1.0",
"private": true,
"description": "Web UI for Eugene Plexus: runtimes, model library, discovery and downloads, schema-driven configuration, chat playground, and logs.",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"codegen": "node scripts/codegen.mjs",
"test:e2e": "playwright test",
"build:python": "npm run build && node scripts/stage-python.mjs"
},
"dependencies": {
"lucide-react": "1.45.0",
"next": "^16.2.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@playwright/test": "^1.63.0",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/node": "^25.9.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.1.1",
"eslint": "^9.18.0",
"eslint-config-next": "^15.5.0",
"jsdom": "^29.1.1",
"openapi-typescript": "^7.4.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^5.0.0"
}
}