-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "code-nuggets",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"@codemirror/lang-css": "^6.0.1",
"@codemirror/lang-html": "^6.1.3",
"@codemirror/lang-javascript": "^6.1.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.0.3",
"@codemirror/theme-one-dark": "^6.1.0",
"codemirror": "^6.0.1",
"element-plus": "^2.2.19",
"monaco-editor": "^0.34.1",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"monaco-themes": "^0.4.2",
"onigasm": "^2.2.5",
"resize-observer-polyfill": "^1.5.1",
"splitpanes": "^3.1.1",
"vue": "^3.2.37",
"vue-codemirror": "^6.1.1"
},
"devDependencies": {
"@types/node": "^18.11.8",
"@vitejs/plugin-vue": "^3.1.0",
"sass": "^1.55.0",
"typescript": "^4.6.4",
"unplugin-auto-import": "^0.11.4",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.1.0",
"vite-plugin-monaco-editor": "^1.1.0",
"vue-tsc": "^0.40.4"
}
}