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

{
"scripts": {
"start": "concurrently \"npm run start:default_app\" \"npm run start:apps_widgets\" \"wait-on http://localhost:8001 && npm run start:platform\" ",
"start:platform": "serve ./lib/platform/dist -p 8000",
"start:default_app": "serve ./lib/default_app/dist -p 8001 --cors",
"start:apps_widgets": "node script.js dev",
"build": "node script.js build",
"install": "node script.js install"
},
"dependencies": {
"concurrently": "^6.0.2",
"fs-extra": "^9.1.0",
"serve": "^11.3.2",
"wait-on": "^5.3.0"
}
}