mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-09 03:50:45 +08:00
fdc1bb50da
- run npm, bower install every time (except from sdist). Removes need to check npm, bower sources. - only check `built/index.js` for build target since webpack is only a single step now
32 lines
904 B
JSON
32 lines
904 B
JSON
{
|
|
"name": "jupyter-notebook-deps",
|
|
"version": "4.0.0",
|
|
"description": "Jupyter Notebook nodejs dependencies",
|
|
"author": "Jupyter Developers",
|
|
"license": "BSD-3-Clause",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jupyter/notebook.git"
|
|
},
|
|
"scripts": {
|
|
"bower": "bower install --allow-root --config.interactive=false",
|
|
"build:watch": "concurrent \"npm run build:css:watch\" \"npm run build:js:watch\"",
|
|
"build": "npm run build:css && npm run build:js",
|
|
"build:css": "python setup.py css",
|
|
"build:css:watch": "echo Not implemented yet...",
|
|
"build:js": "webpack",
|
|
"build:js:watch": "npm run build:js -- --watch"
|
|
},
|
|
"devDependencies": {
|
|
"bower": "*",
|
|
"concurrently": "^1.0.0",
|
|
"less": "~2",
|
|
"requirejs": "^2.1.17",
|
|
"underscore": "^1.8.3",
|
|
"webpack": "^1.12.13"
|
|
},
|
|
"dependencies": {
|
|
"moment": "^2.8.4"
|
|
}
|
|
}
|