-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 3.18 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
{
"name": "@resources/notebook",
"type": "module",
"scripts": {
"api": "cross-env PORT=3334 node api/server.js",
"build:edit": "NODE_ENV=production vite build -c vite-edit.config.ts",
"build:view": "NODE_ENV=production vite build -c vite-view.config.ts",
"build:vite-frames": "pnpm build:edit && pnpm build:view",
"build:main": "NODE_ENV=production vite build",
"build:copy": "mkdir -p public/app/edit && cp dist-edit/app/edit/index.html public/app/edit/index.html && mkdir -p public/app/view && cp dist-view/app/view/index.html public/app/view/index.html",
"build:remove-copied": "rm -f public/app/edit/index.html public/app/view/index.html",
"build": "vue-tsc --noEmit && pnpm build:vite-frames && pnpm build:copy && pnpm build:main && pnpm build:remove-copied && cp -r vercel.json dist/vercel.json && cp -r api dist/api",
"dev": "vite --port 3333",
"preview": "vite preview",
"test": "vitest --outputTruncateLength=500",
"test:ui": "vitest --ui --outputTruncateLength=500",
"test:run": "vitest run"
},
"dependencies": {
"@codemirror/autocomplete": "^6.4.2",
"@codemirror/commands": "^6.2.1",
"@codemirror/lang-css": "^6.0.2",
"@codemirror/lang-html": "^6.4.2",
"@codemirror/lang-javascript": "^6.1.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.1.0",
"@codemirror/lang-python": "^6.1.1",
"@codemirror/lang-sql": "^6.4.0",
"@codemirror/language": "^6.6.0",
"@codemirror/lint": "^6.1.1",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.1",
"@jsep-plugin/template": "^1.0.2",
"@unocss/reset": "^0.50.1",
"@vueuse/core": "^9.13.0",
"@vueuse/head": "^1.1.8",
"ajv": "^8.12.0",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"fflate": "^0.7.4",
"file-saver": "^2.0.5",
"highlight.js": "^11.7.0",
"jsep": "^1.3.8",
"lib0": "^0.2.63",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-task-list-plus": "^2.1.3",
"mermaid": "^10.0.0",
"nanoid": "^4.0.1",
"path-to-regexp": "^6.2.1",
"split-grid": "^1.0.11",
"unocss": "^0.50.1",
"unocss-preset-scrollbar": "^0.2.1",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"y-codemirror.next": "^0.3.2",
"yjs": "^13.5.47"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.191",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-highlightjs": "^3.3.1",
"@unocss/preset-typography": "^0.50.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.47",
"@vue/server-renderer": "^3.2.47",
"@vue/test-utils": "^2.3.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"happy-dom": "^8.9.0",
"rollup": "^3.17.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-pwa": "^0.14.4",
"vite-plugin-singlefile": "^0.13.3",
"vitest": "^0.29.1",
"vue-tsc": "^1.2.0",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-window": "^6.5.4"
}
}