package.json 867 B

123456789101112131415161718192021222324
  1. {
  2. "name": "@jupyterlab/benchmarks",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "build:jlab": "cd .. && jlpm run build",
  8. "build:benchmark": "tsc",
  9. "start:jlab": "fkill -s :9999 && cd .. && jupyter lab --dev --no-browser --port 9999 --LabApp.password= --LabApp.token=",
  10. "start:benchmark": "wait-on http-get://localhost:9999/lab && node --experimental-modules --es-module-specifier-resolution=node lib/index.js",
  11. "start:all": "npm-run-all --parallel start:jlab start:benchmark --race",
  12. "start:analysis": "cd .. && jupyter lab --dev benchmarks/analysis.vl.json",
  13. "all": "npm-run-all build:* start:all start:analysis"
  14. },
  15. "dependencies": {
  16. "playwright": "0.11.1"
  17. },
  18. "devDependencies": {
  19. "fkill-cli": "6.0.1",
  20. "npm-run-all": "4.1.5",
  21. "typescript": "~3.7.3",
  22. "wait-on": "4.0.1"
  23. }
  24. }