dayzdockerserver/web/package.json
Daniel Ceregatti 9cf22998d2 Add support for experimental.
Add streaming text modal for steamcmd operations that run over time with output that will do the same. So far this is just as a test, but it works.
Refactor the store to use actions to set variables that are required to be boolean.
Continue staging test components so when it comes time to do things for real, they'll be ready. Working backwards, always.
Implement Steam login. Needs polish.
Figure out styles. Our index.css is still being loaded before the theme, and its overrides only take effect when those don't set anything in the theme beforehand. Still not working.
Consolidate the config between Vue and express.
Monitor config changes in nodemon.
Everything is WIP.
2024-08-09 10:56:41 -07:00

34 lines
809 B
JSON

{
"name": "web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js -w index.js -w docroot/src/config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.1",
"express": "^4.19.2",
"nodemon": "^3.1.4",
"vite": "^5.3.5",
"vite-express": "^0.17.0"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@primevue/themes": "^4.0.2",
"@vueuse/core": "^10.11.0",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"pinia": "^2.2.0",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primevue": "^4.0.2",
"vue": "^3.4.34",
"vue-i18n": "^9.13.1"
}
}