forked from jupyterlab/extension-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "@jupyterlab-examples/all",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"install": "lerna bootstrap",
"build-ext": "lerna run build:all",
"clean-ext": "lerna run clean",
"embedme": "embedme \"[!n]*/**/README.md\"",
"install-py": "lerna exec --concurrency 4 -- python -m pip install . --use-feature=in-tree-build",
"install-ext": "lerna run install:extension",
"lint": "jlpm && jlpm run prettier",
"lint:check": "jlpm run embedme --verify && jlpm run prettier:check",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"workspaces": {
"packages": [
"command-palette",
"commands",
"completer",
"context-menu",
"custom-log-console",
"datagrid",
"documents",
"hello-world",
"kernel-messaging",
"kernel-output",
"launcher",
"log-messages",
"main-menu",
"react-widget",
"server-extension",
"settings",
"signals",
"state",
"toolbar-button",
"widgets"
]
},
"devDependencies": {
"embedme": "^1.17.1",
"husky": "^3.0.9",
"lerna": "^3.18.4",
"lint-staged": "^9.4.3",
"prettier": "^2.1.1"
}
}