-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "@jupyter-widgets-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 -e .",
"install-ext": "lerna run install:extension",
"lint": "yarn && yarn run prettier",
"lint:check": "yarn run embedme --verify && yarn 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": [
"hello-world"
]
},
"devDependencies": {
"embedme": "^1.17.1",
"husky": "^4.0.9",
"lerna": "^3.18.4",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}