-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.24 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
{
"name": "b10cks-app",
"version": "2026.07.29",
"private": true,
"description": "A Vue + Vite frontend for b10cks – the opinionated headless cms",
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "oxlint --fix",
"lint:ci": "oxlint --deny-warnings",
"format": "oxfmt",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^2.0.2",
"@iconify-json/lucide": "^1.2.130",
"@iconify/vue": "^5.0.1",
"@internationalized/date": "^3.12.4",
"@tanstack/vue-query": "^5.102.8",
"@tiptap/core": "^3.31.3",
"@tiptap/extension-blockquote": "^3.31.3",
"@tiptap/extension-bullet-list": "^3.31.3",
"@tiptap/extension-code-block": "^3.31.3",
"@tiptap/extension-heading": "^3.31.3",
"@tiptap/extension-history": "^3.31.3",
"@tiptap/extension-horizontal-rule": "^3.31.3",
"@tiptap/extension-link": "^3.31.3",
"@tiptap/extension-list-item": "^3.31.3",
"@tiptap/extension-mention": "^3.31.3",
"@tiptap/extension-ordered-list": "^3.31.3",
"@tiptap/extension-placeholder": "^3.31.3",
"@tiptap/extension-table": "^3.31.3",
"@tiptap/extension-table-cell": "^3.31.3",
"@tiptap/extension-table-header": "^3.31.3",
"@tiptap/extension-table-row": "^3.31.3",
"@tiptap/extension-text": "^3.31.3",
"@tiptap/extension-underline": "^3.31.3",
"@tiptap/pm": "^3.31.3",
"@tiptap/starter-kit": "^3.31.3",
"@tiptap/suggestion": "^3.31.3",
"@tiptap/vue-3": "^3.31.3",
"@vueuse/integrations": "^14.4.0",
"chart.js": "^4.5.1",
"class-variance-authority": "^0.7.1",
"dayjs": "^1.11.23",
"diff": "^9.0.0",
"dompurify": "^3.4.15",
"laravel-echo": "^2.5.0",
"leaflet": "^1.9.4",
"marked": "^18.0.12",
"posthog-js": "^1.428.8",
"pusher-js": "^8.6.0",
"qrcode": "^1.5.4",
"reka-ui": "^2.10.4",
"sortablejs": "^1.15.7",
"vue": "^3.5.42",
"vue-chartjs": "^5.3.4",
"vue-i18n": "^11.4.10",
"vue-input-otp": "^0.4.0",
"vue-router": "^5.3.1",
"vue-sonner": "^2.0.9"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/vite": "^4.3.3",
"@types/leaflet": "^1.9.22",
"@types/qrcode": "^1.5.6",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.11",
"@vue/test-utils": "^2.5.0",
"@vueuse/core": "^14.4.0",
"@vueuse/router": "^14.4.0",
"jsdom": "^30.0.1",
"laravel-vite-plugin": "^3.2.0",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"tailwindcss": "^4.3.3",
"typescript": "~5.9.3",
"tw-animate-css": "^1.4.0",
"unplugin-auto-import": "^21.1.0",
"vite": "^8.2.2",
"vite-plugin-pwa": "^1.3.0",
"vite-svg-loader": "^5.1.3",
"vitepress": "^1.6.4",
"vitepress-openapi": "^0.2.4",
"vitest": "^4.1.11",
"vue-tsc": "^3.3.11"
},
"lint-staged": {
"*.{js,json,md,jsx,ts,tsx,vue,yaml}": "oxlint --fix"
},
"overrides": {
"prosemirror-model": "1.25.11"
}
}