第一次提交

This commit is contained in:
2025-05-02 13:09:37 +08:00
commit ea5690fe88
39 changed files with 11346 additions and 0 deletions

38
package.json Normal file
View File

@ -0,0 +1,38 @@
{
"name": "ao3-mirror-ssr",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.js --outDir dist/server",
"preview": "cross-env NODE_ENV=production PORT=5174 HOST=:: node server"
},
"dependencies": {
"@mdui/icons": "^1.0.2",
"axios": "^1.8.1",
"compress-json": "^3.1.1",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"express": "^5.0.1",
"idb": "^8.0.2",
"mdui": "^2.1.3",
"pako": "^2.1.0",
"pinia": "^3.0.1",
"sirv": "^3.0.1",
"vue": "^3.5.13",
"vue-client-only": "^2.1.0",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"cross-env": "^7.0.3",
"vite": "^6.1.1",
"vite-plugin-md": "^0.21.5",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-vue-devtools": "^7.7.2"
}
}