-
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.37 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.37 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": "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 python -m uvicorn backend.main:app --host 0.0.0.0 --port 8081 --reload --reload-dir 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"
},
"dependencies": {
"@vueuse/core": "^10.5.0",
"axios": "^1.6.0",
"pinia": "^2.1.0",
"primeicons": "^6.0.0",
"primevue": "^3.45.0",
"vue": "^3.4.0",
"vue-router": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@vitejs/plugin-vue": "^4.5.0",
"concurrently": "^9.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.6.2",
"prettier": "^3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"typescript": "^5.2.0",
"vite": "^5.0.0"
}
}