-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "@jupyterlab-examples/all",
"private": true,
"scripts": {
"build-ext": "lerna run build:all",
"clean-ext": "lerna run clean",
"embedme": "embedme \"[!n]*/README.md\" \"notifications/README.md\"",
"install-py": "lerna exec --concurrency 4 -- touch yarn.lock && lerna exec --concurrency 4 -- python -m pip install \".\"",
"install-ext": "lerna run install:extension",
"lint": "lerna run lint && jlpm run embedme",
"lint:check": "lerna run lint:check && jlpm run embedme --verify",
"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": [
"clap-button-message",
"cell-toolbar",
"codemirror-extension",
"command-palette",
"commands",
"completer",
"contentheader",
"context-menu",
"custom-log-console",
"datagrid",
"documents",
"hello-world",
"kernel-messaging",
"kernel-output",
"launcher",
"log-messages",
"main-menu",
"metadata-form",
"notifications",
"react-widget",
"server-extension",
"settings",
"shout-button-message",
"signals",
"state",
"toolbar-button",
"toparea-text-widget",
"widgets"
],
"devDependencies": {
"embedme": "^1.22.1",
"husky": "^8.0.3",
"lerna": "^7.4.2",
"lint-staged": "^15.1.0",
"prettier": "^3.0.3"
}
}