package.json 366 B

12345678910111213
  1. {
  2. "private": true,
  3. "name": "jupyter-js-notebook-example",
  4. "scripts": {
  5. "build": "tsc --project src && webpack --config webpack.conf.js",
  6. "clean": "rimraf build && rimraf node_modules",
  7. "postinstall": "npm dedupe",
  8. "update": "rimraf node_modules/jupyter-js-notebook && npm install"
  9. },
  10. "devDependencies": {
  11. "concurrently": "^2.0.0"
  12. }
  13. }