-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.66 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.66 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
{
"name": "flumen",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:unit": "vitest --project unit --run",
"test:nuxt": "vitest --project nuxt --run",
"test:integration": "vitest --project integration --run",
"test:types": "nuxi typecheck",
"lint": "eslint .",
"knip": "knip",
"knip:fix": "knip --fix",
"i18n:report": "node --experimental-strip-types scripts/find-invalid-translations.ts",
"i18n:report:fix": "node --experimental-strip-types scripts/remove-unused-translations.ts",
"i18n:schema": "node --experimental-strip-types scripts/generate-i18n-schema.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1009.0",
"@flumen-dev/mutatio-view": "^0.0.1-alpha.1",
"@nuxt/image": "2.0.0",
"@nuxt/ui": "4.5.1",
"@nuxtjs/i18n": "10.2.3",
"@pinia/nuxt": "0.11.3",
"@tiptap/core": "3.20.0",
"@tiptap/extension-code-block-lowlight": "3.20.0",
"@tiptap/extension-list": "3.20.0",
"@tiptap/extension-task-item": "3.20.0",
"@tiptap/extension-task-list": "3.20.0",
"@tiptap/pm": "3.20.1",
"@upstash/redis": "1.37.0",
"@vercel/analytics": "1.6.1",
"@vercel/speed-insights": "1.3.1",
"dompurify": "3.3.1",
"emoji-blast": "0.11.0",
"emoji-picker-element-data": "1.8.0",
"lowlight": "3.3.0",
"marked": "17.0.4",
"nuxt": "4.3.1",
"nuxt-auth-utils": "0.5.29",
"nuxt-freeform": "0.1.0-alpha.7",
"pinia": "3.0.4",
"pinia-plugin-persistedstate": "4.7.1",
"sanitize-html": "2.17.1",
"unhead": "^2.1.12",
"unstorage": "1.17.4",
"vorm-nuxt": "1.2.1",
"vorm-vue": "1.2.5",
"vue": "3.5.30",
"vue-router": "5.0.3",
"vuemoji-picker": "0.3.2",
"yaml": "2.8.2"
},
"devDependencies": {
"@iconify-json/lucide": "1.2.95",
"@iconify-json/simple-icons": "1.2.71",
"@nuxt/a11y": "1.0.0-alpha.1",
"@nuxt/eslint": "1.15.2",
"@nuxt/test-utils": "4.0.0",
"@types/sanitize-html": "2.16.1",
"@vitest/coverage-v8": "4.0.18",
"@vue/test-utils": "2.4.6",
"echarts": "6.0.0",
"eslint": "10.0.2",
"flat": "link:@nuxt/eslint-config/flat",
"happy-dom": "20.7.0",
"knip": "5.86.0",
"nuxt-echarts": "1.0.1",
"playwright-core": "1.58.2",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"vitest": "4.0.18",
"vitest-environment-nuxt": "1.0.1",
"vue-i18n-extract": "2.0.7"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.31.0"
}