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:
30
package.json
Normal file
30
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user