-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "OpenStore",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"node server/index.cjs\" \"vite --port 3000 --host\"",
"build": "vue-tsc -b && vite build && node scripts/generate-sitemap.js",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueup/vue-quill": "^1.2.0",
"@vueuse/core": "^14.1.0",
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"device-detector-js": "^3.0.3",
"dotenv": "^17.2.3",
"echarts": "^5.5.1",
"element-plus": "^2.9.1",
"express": "^5.2.1",
"geoip-lite": "^1.4.10",
"github-markdown-css": "^5.9.0",
"highlight.js": "^11.11.1",
"jsonwebtoken": "^9.0.3",
"katex": "^0.16.22",
"markdown-it": "^14.1.0",
"markdown-it-katex": "^2.0.3",
"marked": "^17.0.1",
"multer": "^2.0.2",
"pinia": "^2.3.0",
"quill": "^2.0.3",
"sqlite3": "^5.1.7",
"ua-parser-js": "^2.0.6",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"ws": "^8.18.3",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"jsdom": "^25.0.1",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vite-plugin-compression2": "^2.4.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
}
}