Files
singlechat/package.json

31 lines
864 B
JSON

{
"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"
}
}