add http-server to dev deps, python option
... | ... | @@ -31,12 +31,14 @@ |
"install": "lerna bootstrap", | ||
"prettier": "prettier --list-different --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"", | ||
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"", | ||
"publish": "yarn run clean && yarn run build && lerna publish", | ||
"publish": "yarn clean && yarn build && lerna publish", | ||
"test": "lerna run test", | ||
"update:dependency": "node ./node_modules/@jupyterlab/buildutils/lib/update-dependency.js --lerna", | ||
"watch": "run-p watch:lib watch:app", | ||
"watch:lib": "lerna exec --stream --scope @jupyterlite/metapackage yarn watch", | ||
"watch:app": "lerna exec --stream --stream --parallel --scope \"@jupyterlite/app-classic\" --scope \"@jupyterlite/app\" yarn watch" | ||
"watch:app": "lerna exec --stream --stream --parallel --scope \"@jupyterlite/app-classic\" --scope \"@jupyterlite/app\" yarn watch", | ||
"serve": "cd app && http-server", | ||
"serve:py": "cd app && python -m http.server" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
... | ... | @@ -52,6 +54,7 @@ |
"eslint-plugin-jest": "^24.1.3", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"eslint-plugin-react": "^7.21.5", | ||
"http-server": "^0.12.3", | ||
"husky": "^3", | ||
"jest": "^26.4.2", | ||
"jest-junit": "^11.1.0", | ||
... | ... |
Please register or sign in to comment