12345678910111213141516171819202122 |
- {
- "private": true,
- "name": "jupyterlab-example",
- "scripts": {
- "build": "webpack --config webpack.conf.js",
- "clean": "rimraf build && rimraf node_modules",
- "postinstall": "npm dedupe",
- "update": "rimraf node_modules/jupyterlab && npm install",
- "watch": "watch 'npm run update && npm run build' ../../src --wait 10"
- },
- "dependencies": {
- "es6-promise": "^3.1.2",
- "jupyter-js-services": "^0.11.1",
- "jupyterlab": "file:../../",
- "phosphide": "^0.9.4"
- },
- "devDependencies": {
- "rimraf": "^2.5.2",
- "watch": "^0.18.0",
- "webpack": "^1.13.1"
- }
- }
|