forked from LizardByte/Sunshine
-
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 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
{
"type": "module",
"scripts": {
"prebuild": "node ./src_assets/common/assets/web/scripts/extract-welcome-locales.js",
"build": "vite build --debug",
"build-clean": "vite build --debug --emptyOutDir",
"dev": "vite build --watch",
"dev-server": "vite serve --config vite.dev.config.js",
"dev-full": "node dev-server.js",
"preview": "vite preview",
"preview:build": "npm run build && npm run preview",
"i18n:validate": "node scripts/validate-i18n.js",
"i18n:sync": "node scripts/validate-i18n.js --sync",
"i18n:reverse-sync": "node scripts/reverse-sync-i18n.js --sync",
"i18n:reverse-check": "node scripts/reverse-sync-i18n.js",
"i18n:format": "node scripts/format-i18n.js",
"i18n:format:check": "node scripts/format-i18n.js --check"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.6.0",
"@popperjs/core": "2.11.8",
"bootstrap": "5.3.3",
"colorthief": "^2.6.0",
"firebase": "^12.3.0",
"marked": "^16.2.1",
"nanoid": "^5.0.7",
"qrcode": "^1.5.4",
"vue": "^3.5.26",
"vue-i18n": "^11.2.8",
"vuedraggable-es": "^4.1.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.3",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"less": "^4.4.2",
"vite": "^7.3.1",
"vite-plugin-ejs": "1.6.4",
"vite-plugin-mkcert": "^1.17.8"
}
}