-
Notifications
You must be signed in to change notification settings - Fork 321
/
package.json
119 lines (119 loc) · 3.71 KB
/
package.json
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
119
{
"name": "dozzle",
"version": "8.8.1",
"description": "Realtime log viewer for docker containers.",
"homepage": "https://github.com/amir20/dozzle#readme",
"bugs": {
"url": "https://github.com/amir20/dozzle/issues"
},
"packageManager": "[email protected]",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/amir20/dozzle.git"
},
"license": "ISC",
"author": "Amir Raminfar <[email protected]>",
"scripts": {
"agent:dev": "DOZZLE_AGENT_ADDR=localhost:7007 DEV=true reflex -c .reflex.agent",
"watch:frontend": "vite --open http://localhost:3100/",
"watch:backend": "LIVE_FS=true DEV=true DOZZLE_ADDR=localhost:3100 reflex -c .reflex.server",
"dev": "concurrently --kill-others \"npm:watch:*\"",
"build": "vite build",
"preview": "LIVE_FS=true DOZZLE_ADDR=localhost:3100 reflex -c .reflex.server",
"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": {
"@duckdb/duckdb-wasm": "1.29.0",
"@iconify-json/carbon": "^1.2.4",
"@iconify-json/cil": "^1.2.1",
"@iconify-json/ic": "^1.2.1",
"@iconify-json/material-symbols": "^1.2.7",
"@iconify-json/mdi": "^1.2.1",
"@iconify-json/mdi-light": "^1.2.1",
"@iconify-json/octicon": "^1.2.1",
"@iconify-json/ph": "^1.2.1",
"@intlify/unplugin-vue-i18n": "^6.0.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.15",
"@vueuse/components": "^11.3.0",
"@vueuse/core": "^11.3.0",
"@vueuse/integrations": "^11.3.0",
"@vueuse/router": "^11.3.0",
"ansi-to-html": "^0.7.2",
"autoprefixer": "^10.4.20",
"d3-array": "^3.2.4",
"d3-ease": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-transition": "^3.0.1",
"daisyui": "^4.12.14",
"date-fns": "^4.1.0",
"entities": "^5.0.0",
"fuse.js": "^7.0.0",
"lodash.debounce": "^4.0.8",
"pinia": "^2.2.6",
"postcss": "^8.4.49",
"sortablejs": "^1.15.3",
"splitpanes": "^3.1.5",
"strip-ansi": "^7.1.0",
"tailwindcss": "^3.4.15",
"unplugin-auto-import": "^0.18.5",
"unplugin-icons": "^0.20.1",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-macros": "^2.13.4",
"unplugin-vue-router": "^0.10.8",
"vite": "5.4.11",
"vite-plugin-compression2": "^1.3.1",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.5.0",
"vue": "^3.5.13",
"vue-i18n": "^10.0.4",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@apache-arrow/esnext-esm": "^18.0.0",
"@pinia/testing": "^0.1.7",
"@playwright/test": "^1.49.0",
"@types/d3-array": "^3.2.1",
"@types/d3-ease": "^3.0.2",
"@types/d3-scale": "^4.0.8",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.6",
"@types/d3-transition": "^3.0.9",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.9.1",
"@vitejs/plugin-vue": "5.2.0",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.8.1",
"c8": "^10.1.2",
"concurrently": "^9.1.0",
"eventsourcemock": "^2.0.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"vue-component-type-helpers": "^2.1.10",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"*.{js,vue,css,ts,html,md}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
}
}