-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "bar",
"version": "0.0.0",
"private": true,
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"start": "electron .",
"pack:win": "electron-builder --win nsis",
"pack:mac": "electron-builder --mac"
},
"dependencies": {
"dotenv": "^16.4.7",
"element-plus": "^2.9.4",
"pinia": "^2.3.1",
"vue": "^3.5.13",
"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",
"electron": "^34.1.1",
"electron-builder": "^25.1.8",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"sass-embedded": "^1.85.1",
"tailwindcss": "^3.4.17",
"unplugin-auto-import": "^19.0.0",
"unplugin-element-plus": "^0.9.1",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.11",
"vite-plugin-vue-devtools": "^7.7.1"
}
}