package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "@jupyterlab/ui-components",
  3. "version": "3.0.0-alpha.4",
  4. "description": "JupyterLab - UI components written in React",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "files": [
  16. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  18. ],
  19. "sideEffects": [
  20. "style/**/*"
  21. ],
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "style": "style/index.css",
  25. "directories": {
  26. "lib": "lib/"
  27. },
  28. "scripts": {
  29. "build": "tsc -b",
  30. "build:storybook": "build-storybook -c .storybook",
  31. "build:test": "tsc --build tsconfig.test.json",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "cleansvg": "svgo --config svgo.yaml",
  34. "docs": "typedoc src",
  35. "docs:init": "bash docs/build.sh",
  36. "prepublishOnly": "npm run build",
  37. "storybook": "start-storybook -p 9001 -c .storybook",
  38. "test": "jest",
  39. "test:cov": "jest --collect-coverage",
  40. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  41. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  42. "watch": "tsc -b --watch"
  43. },
  44. "dependencies": {
  45. "@blueprintjs/core": "^3.22.2",
  46. "@blueprintjs/select": "^3.11.2",
  47. "@jupyterlab/coreutils": "^5.0.0-alpha.4",
  48. "@lumino/coreutils": "^1.4.3",
  49. "@lumino/signaling": "^1.3.5",
  50. "@lumino/virtualdom": "^1.6.1",
  51. "@lumino/widgets": "^1.11.1",
  52. "react": "~16.9.0",
  53. "react-dom": "~16.9.0",
  54. "typestyle": "^2.0.4"
  55. },
  56. "devDependencies": {
  57. "@babel/core": "^7.5.0",
  58. "@babel/preset-env": "^7.7.6",
  59. "@jupyterlab/testutils": "^3.0.0-alpha.4",
  60. "@storybook/addon-actions": "^5.2.5",
  61. "@storybook/react": "^5.2.5",
  62. "@types/jest": "^24.0.23",
  63. "@types/react": "~16.9.16",
  64. "@types/webpack-env": "^1.14.1",
  65. "awesome-typescript-loader": "^5.2.1",
  66. "babel-loader": "^8.0.6",
  67. "jest": "^25.2.3",
  68. "react-docgen-typescript-loader": "^3.3.0",
  69. "rimraf": "~3.0.0",
  70. "svgo": "^1.3.2",
  71. "ts-jest": "^25.2.1",
  72. "typedoc": "^0.17.7",
  73. "typescript": "~3.9.2"
  74. },
  75. "peerDependencies": {
  76. "react": "~16.9.0"
  77. },
  78. "publishConfig": {
  79. "access": "public"
  80. },
  81. "jupyterlab": {
  82. "extraStyles": {
  83. "blueprintjs": [
  84. "icons/lib/css/blueprint-icons.css",
  85. "core/lib/css/blueprint.css"
  86. ]
  87. }
  88. }
  89. }