-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.4 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
{
"name": "gf-story",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm build-viewer && vite",
"build-index": "vite-node test/pagefind-index.ts public/stories public/search",
"build-editor": "pnpm build-viewer && run-p type-check \"build-only {@}\" --",
"build-viewer-only": "env BUILD_TARGET=viewer run-p type-check \"build-only {@}\" --",
"build-viewer": "pnpm build-viewer-only && cp viewer/viewer.html public && mkdir -p dist && cp viewer/viewer.html dist",
"build": "pnpm build-editor",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@brocatel/mdc": "^0.3.5",
"@brocatel/mde": "^0.3.4",
"@ckeditor/ckeditor5-alignment": "^39.0.2",
"@ckeditor/ckeditor5-basic-styles": "^39.0.2",
"@ckeditor/ckeditor5-editor-classic": "^39.0.2",
"@ckeditor/ckeditor5-essentials": "^39.0.2",
"@ckeditor/ckeditor5-font": "^39.0.2",
"@ckeditor/ckeditor5-paragraph": "^39.0.2",
"@ckeditor/ckeditor5-vue": "^5.1.0",
"@dagrejs/dagre": "^1.1.3",
"@types/file-saver": "^2.0.7",
"@vicons/material": "^0.12.0",
"@vue-flow/core": "^1.37.1",
"@vue-flow/minimap": "^1.5.0",
"dexie": "^3.2.7",
"file-saver": "^2.0.5",
"jieba-wasm": "^2.1.1",
"jszip": "^3.10.1",
"micromark": "^4.0.0",
"micromark-extension-directive": "^3.0.1",
"naive-ui": "^2.38.2",
"vfonts": "^0.0.3",
"vue": "^3.4.30",
"vue-advanced-cropper": "^2.8.9"
},
"devDependencies": {
"@ckeditor/ckeditor5-theme-lark": "^39.0.2",
"@ckeditor/vite-plugin-ckeditor5": "^0.1.3",
"@rushstack/eslint-patch": "^1.10.3",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.39",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-vue": "^9.26.0",
"npm-run-all2": "^6.2.0",
"pagefind": "^1.1.0",
"typescript": "~5.2.2",
"vite": "^4.5.3",
"vite-node": "^0.34.7",
"vite-plugin-singlefile": "^0.13.5",
"vitest": "^1.6.0",
"vue-tsc": "^1.8.27"
}
}