package.json 646 B

123456789101112131415161718192021222324
  1. {
  2. "name": "saas-portal-web",
  3. "version": "1.0.0",
  4. "description": "saas portal",
  5. "main": "index.js",
  6. "scripts": {
  7. "dev": "webpack-dev-server --mode development --inline --progress --config ./webpack.dev.conf.js",
  8. "start": "npm run dev",
  9. "build": "webpack --mode production --config ./webpack.conf.js"
  10. },
  11. "keywords": [
  12. "saas"
  13. ],
  14. "author": "yingp@usoftchina.com",
  15. "license": "ISC",
  16. "devDependencies": {
  17. "clean-webpack-plugin": "^1.0.0",
  18. "copy-webpack-plugin": "^4.6.0",
  19. "html-webpack-plugin": "^3.2.0",
  20. "webpack": "^4.25.1",
  21. "webpack-cli": "^3.1.2",
  22. "webpack-dev-server": "^3.1.10"
  23. }
  24. }