-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
61 lines (61 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "jupyterlab-blockly-root",
"private": true,
"version": "0.3.3",
"description": "Blockly extension for JupyterLab.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/QuantStack/jupyterlab-blockly",
"bugs": {
"url": "https://github.com/QuantStack/jupyterlab-blockly/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/QuantStack/jupyterlab-blockly"
},
"license": "BSD-3-Clause",
"author": {
"name": "quantstack",
"email": ""
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run --stream build",
"build:prod": "lerna run --stream build:prod",
"clean": "lerna run --stream clean",
"clean:all": "lerna --stream run clean:all",
"deduplicate": "yarn-deduplicate -s fewer --fail",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install": "lerna bootstrap",
"install:extension": "lerna run --stream install:extension",
"lint": "jlpm prettier && jlpm eslint",
"lint:check": "jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css}\"",
"prettier:check": "jlpm prettier:base --check",
"watch": "lerna run --stream watch"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.5.1",
"typescript": "~5.0.2"
},
"devDependencies": {
"lerna": "^6.5.1",
"yarn-deduplicate": "^6.0.0"
}
}