-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "project",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"server": "json-server --watch db.json --delay=3000 --port 3001"
},
"dependencies": {
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/lang-python": "^6.1.7",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.5",
"axios": "^1.7.9",
"babel-runtime": "^6.26.0",
"codemirror": "^6.0.1",
"lucide-vue-next": "^0.474.0",
"marked": "^15.0.9",
"monaco-editor-vue3": "^0.1.10",
"pinia": "^2.3.1",
"prismjs": "^1.30.0",
"splitpanes": "^3.1.8",
"vue": "^3.5.13",
"vue-markdown": "^2.2.4",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"json-server": "^0.17.4",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"vite": "^6.0.11",
"vite-plugin-vue-devtools": "^7.7.0"
}
}