-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.81 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
{
"name": "go-drive-web",
"version": "0.0.0",
"type": "module",
"description": "Web Application for go-drive",
"scripts": {
"dev": "vite",
"build-monaco-editor": "cd monaco-editor && npm install && npm run build",
"build-web": "vue-tsc --noEmit && vite build",
"build": "npm run build-monaco-editor && npm run build-web",
"preview": "vite preview",
"lint": "vue-tsc --noEmit && eslint"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"codemirror": "^6.0.2",
"dompurify": "^3.4.11",
"github-markdown-css": "^5.9.0",
"highlight.js": "^11.11.1",
"marked": "^18.0.5",
"marked-highlight": "^2.2.4",
"photoswipe": "^5.4.4",
"pinia": "^3.0.4",
"vue": "^3.5.38",
"vue-i18n": "^11.4.5",
"vue-router": "^5.1.0"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/node": "^24",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.79.4",
"typescript": "^5.6.2",
"vite": "^8.0.16",
"vite-plugin-html": "^3.2.2",
"vue-tsc": "^2.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devld/go-drive.git"
},
"license": "MIT",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}