|
37 | 37 | "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
38 | 38 | "clean:labextension": "rimraf jupyterlab_blockly/labextension", |
39 | 39 | "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
40 | | - "eslint": "eslint . --ext .ts,.tsx --fix", |
| 40 | + "eslint": "jlpm eslint:check --fix", |
41 | 41 | "eslint:check": "eslint . --ext .ts,.tsx", |
42 | 42 | "install:extension": "jlpm run build", |
| 43 | + "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", |
| 44 | + "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", |
| 45 | + "prettier": "jlpm prettier:base --write --list-different", |
| 46 | + "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css}\"", |
| 47 | + "prettier:check": "jlpm prettier:base --check", |
43 | 48 | "watch": "run-p watch:src watch:labextension", |
44 | 49 | "watch:src": "tsc -w", |
45 | 50 | "watch:labextension": "jupyter labextension watch .", |
|
48 | 53 | "dependencies": { |
49 | 54 | "@jupyterlab/application": "^3.4", |
50 | 55 | "@jupyterlab/apputils": "^3.4", |
| 56 | + "@jupyterlab/cells": "^3.4", |
| 57 | + "@jupyterlab/codeeditor": "^3.4", |
| 58 | + "@jupyterlab/coreutils": "^5.4", |
51 | 59 | "@jupyterlab/docregistry": "^3.4", |
52 | 60 | "@jupyterlab/filebrowser": "^3.4", |
53 | 61 | "@jupyterlab/launcher": "^3.4", |
54 | 62 | "@jupyterlab/outputarea": "^3.4", |
55 | 63 | "@jupyterlab/rendermime": "^3.4", |
| 64 | + "@jupyterlab/services": "^6.4", |
| 65 | + "@jupyterlab/ui-components": "^3.4", |
56 | 66 | "@lumino/algorithm": "^1.9.0", |
57 | 67 | "@lumino/coreutils": "^1.11.0", |
58 | 68 | "@lumino/messaging": "^1.10.0", |
|
69 | 79 | "eslint": "^8.9.0", |
70 | 80 | "eslint-config-prettier": "^8.4.0", |
71 | 81 | "eslint-plugin-prettier": "^4.0.0", |
| 82 | + "eslint-plugin-react": "^7.30.0", |
72 | 83 | "npm-run-all": "^4.1.5", |
73 | 84 | "prettier": "^2.5.1", |
74 | 85 | "rimraf": "^3.0.2", |
|
0 commit comments