Remove deprecated scripts for adding head-matter to wt_config.xml, including Python and Bash implementations, to streamline configuration management.

This commit is contained in:
Torsten Schulz (local)
2025-12-04 16:34:45 +01:00
parent 4b674c7c60
commit 6e9116e819
13187 changed files with 1493219 additions and 337 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "singlechat",
"version": "1.0.0",
"type": "module",
"description": "SingleChat Node.js/Vue Application",
"scripts": {
"dev:server": "node server/index.js",
"dev:client": "cd client && npm run dev",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"install:all": "npm install && cd client && npm install",
"build": "cd client && npm run build",
"start": "NODE_ENV=production node server/index.js",
"start:prod": "NODE_ENV=production PORT=4000 node server/index.js"
},
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.2",
"cookie-parser": "^1.4.6",
"express-session": "^1.17.3",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.6",
"cors": "^2.8.5",
"axios": "^1.6.0",
"csv-parse": "^5.5.2"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}