tis-cli前端项目快速搭建命令行工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
559 B

  1. {
  2. "scripts": {
  3. "start": "concurrently \"npm run start:default_app\" \"npm run start:apps_widgets\" \"wait-on http://localhost:8001 && npm run start:platform\" ",
  4. "start:platform": "serve ./lib/platform/dist -p 8000",
  5. "start:default_app": "serve ./lib/default_app/dist -p 8001 --cors",
  6. "start:apps_widgets": "node script.js dev",
  7. "build": "node script.js build",
  8. "install": "node script.js install"
  9. },
  10. "dependencies": {
  11. "concurrently": "^6.0.2",
  12. "fs-extra": "^9.1.0",
  13. "serve": "^11.3.2",
  14. "wait-on": "^5.3.0"
  15. }
  16. }