package.json 637 B

12345678910111213141516171819202122
  1. {
  2. "private": true,
  3. "name": "jupyter-js-notebook-example",
  4. "dependencies": {
  5. "jupyter-js-notebook": "file:..",
  6. "jupyter-js-ui": "^0.5.1",
  7. "phosphor-commandpalette": "^0.2.0",
  8. "phosphor-keymap": "^0.7.0",
  9. "phosphor-splitpanel": "^1.0.0-rc.1",
  10. "phosphor-widget": "^1.0.0-rc.1"
  11. },
  12. "scripts": {
  13. "build": "tsc --project src && webpack --config webpack.conf.js",
  14. "clean": "rimraf build && rimraf node_modules",
  15. "postinstall": "npm dedupe",
  16. "update": "rimraf node_modules/jupyter-js-notebook && npm install"
  17. },
  18. "devDependencies": {
  19. "concurrently": "^2.0.0",
  20. "rimraf": "^2.5.2"
  21. }
  22. }