package.json 1002 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "xmas_party",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "@material-ui/core": "^3.4.0",
  7. "body-parser": "^1.18.3",
  8. "cors": "^2.8.5",
  9. "express": "^4.16.4",
  10. "nodemon": "^1.18.6",
  11. "npm-run-all": "^4.1.3",
  12. "react": "^16.6.1",
  13. "react-dom": "^16.6.1",
  14. "react-icons": "^3.2.2",
  15. "react-scripts": "2.1.1",
  16. "sequelize": "^4.41.1",
  17. "sqlite3": "^4.0.4"
  18. },
  19. "scripts": {
  20. "start": "npm-run-all --parallel watch:server start:web",
  21. "start-light": "npm-run-all start:web start:server",
  22. "start:web": "PORT=3001 react-scripts start",
  23. "start:server": "node src/server",
  24. "watch:server": "nodemon --watch src/server src/server",
  25. "build": "react-scripts build",
  26. "test": "react-scripts test",
  27. "eject": "react-scripts eject"
  28. },
  29. "eslintConfig": {
  30. "extends": "react-app"
  31. },
  32. "browserslist": [
  33. ">0.2%",
  34. "not dead",
  35. "not ie <= 11",
  36. "not op_mini all"
  37. ],
  38. "proxy": "http://localhost:3002"
  39. }