-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.79 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
{
"name": "llama-cpp-studio",
"version": "1.0.0",
"description": "llama.cpp Studio - Professional AI Model Management Platform",
"scripts": {
"dev": "cd frontend && vite",
"dev:frontend": "cd frontend && vite",
"dev:backend": "cross-env WATCHFILES_FORCE_POLLING=true watchfiles --filter python --grace-period 0.25 --sigint-timeout 10 \"python -m uvicorn backend.main:app --host 0.0.0.0 --port 8081\" backend",
"dev:all": "concurrently -n backend,frontend -c blue,green \"npm run dev:backend\" \"npm run dev:frontend\"",
"kill-ports": "powershell.exe -Command \"Get-NetTCPConnection -LocalPort 5173,8081 -ErrorAction SilentlyContinue | ForEach-Object { Stop-Process -Id $_.OwningProcess -Force -ErrorAction SilentlyContinue }\"",
"build": "cd frontend && vite build",
"preview": "cd frontend && vite preview",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "vitest run --config frontend/vite.config.mjs",
"test:frontend:watch": "vitest --config frontend/vite.config.mjs",
"test:backend": "python -m pytest backend/tests -q"
},
"dependencies": {
"@primeuix/themes": "^3.0.0",
"@vueuse/core": "^14.4.0",
"axios": "^1.20.0",
"pinia": "^4.0.3",
"primeicons": "^8.0.0",
"primevue": "^5.0.1",
"vue": "^3.5.42",
"vue-router": "^5.3.0"
},
"devDependencies": {
"@types/node": "^26.4.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.11",
"@vue/test-utils": "^2.5.0",
"concurrently": "^10.0.5",
"cross-env": "^10.1.0",
"eslint": "^10.9.1",
"eslint-plugin-vue": "^10.10.0",
"happy-dom": "^20.11.15",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
}
}