package.jsonā¢759 B
{
"name": "react-node-app",
"version": "1.0.0",
"description": "React and Node.js application",
"main": "server/index.js",
"type": "module",
"scripts": {
"start": "node server/index.js && cd client && npm run dev",
"dev": "nodemon server/index.js",
"client": "cd client && npm run dev",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"install-server": "npm install",
"install-all": "npm run install-server && npm run install-client"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"keywords": ["react", "node", "express", "fullstack"],
"author": "",
"license": "MIT"
}