-
-
Notifications
You must be signed in to change notification settings - Fork 505
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.75 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dozzle",
"version": "10.0.7",
"description": "Realtime log viewer for docker containers.",
"homepage": "https://github.com/amir20/dozzle#readme",
"bugs": {
"url": "https://github.com/amir20/dozzle/issues"
},
"packageManager": "pnpm@10.30.3",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/amir20/dozzle.git"
},
"license": "ISC",
"author": "Amir Raminfar <findamir@gmail.com>",
"scripts": {
"agent:dev": "DEV=true air -- agent --level debug --agent-addr localhost:7007",
"watch:frontend": "vite --open http://localhost:3100/",
"watch:backend": "LIVE_FS=true DEV=true air -- --level debug --addr localhost:3100",
"dev": "concurrently --kill-others \"npm:watch:*\"",
"build": "vite build",
"preview": "LIVE_FS=true air -- --addr localhost:3100",
"release": "bumpp",
"test": "TZ=UTC vitest",
"typecheck": "vue-tsc --noEmit",
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.12.2",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.16",
"@duckdb/duckdb-wasm": "1.33.1-dev20.0",
"@iconify-json/carbon": "^1.2.19",
"@iconify-json/cil": "^1.2.3",
"@iconify-json/ic": "^1.2.4",
"@iconify-json/material-symbols": "^1.2.59",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/mdi-light": "^1.2.2",
"@iconify-json/octicon": "^1.2.21",
"@iconify-json/ph": "^1.2.2",
"@intlify/unplugin-vue-i18n": "^11.0.7",
"@lezer/highlight": "^1.2.3",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "4.2.1",
"@vueuse/components": "^14.2.1",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"@vueuse/router": "14.2.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"ansi-to-html": "^0.7.2",
"codemirror": "^6.0.2",
"daisyui": "5.5.19",
"entities": "^7.0.1",
"fuse.js": "^7.1.0",
"lodash.debounce": "^4.0.8",
"pinia": "^3.0.4",
"sortablejs": "^1.15.7",
"splitpanes": "^4.0.4",
"strip-ansi": "^7.2.0",
"tailwindcss": "4.2.1",
"unplugin-auto-import": "^21.0.0",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^31.0.0",
"unplugin-vue-macros": "^2.14.5",
"vite": "7.3.1",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.6.4",
"vue": "^3.5.29",
"vue-i18n": "^11.2.8",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@apache-arrow/esnext-esm": "^21.1.0",
"@iconify-json/ion": "^1.2.6",
"@iconify-json/material-symbols-light": "^1.2.59",
"@iconify-json/ri": "^1.2.10",
"@iconify-json/svg-spinners": "^1.2.4",
"@pinia/testing": "^1.0.3",
"@playwright/test": "^1.58.2",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^25.3.3",
"@vitejs/plugin-vue": "6.0.4",
"@vue/compiler-sfc": "^3.5.29",
"@vue/test-utils": "^2.4.6",
"bumpp": "^10.4.1",
"c8": "^11.0.0",
"concurrently": "^9.2.1",
"eventsourcemock": "^2.0.0",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"simple-git-hooks": "^2.13.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vue-component-type-helpers": "3.2.5",
"vue-tsc": "3.2.5"
},
"lint-staged": {
"*.{js,vue,css,ts,html,md}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
}
}