forked from jupyterlab/jupyter-renderers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 867 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
{
"private": true,
"scripts": {
"build": "lerna run --parallel build",
"link": "lerna exec --parallel -- jupyter labextension link . --no-build",
"prettier": "prettier --write '{!(package),packages/*/!(package),packages/*/!(lib)/**}{.js,.jsx,.ts,.tsx,.css,.json,.md}'",
"precommit": "lint-staged",
"publish": "lerna publish --git-remote jupyterlab",
"watch": "lerna run --parallel watch"
},
"devDependencies": {
"husky": "^0.14.3",
"lerna": "^3.4.1",
"lint-staged": "^7.1.0",
"prettier": "^1.11.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-plugin-prettier": "^1.3.0"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"{!(package),packages/*/!(package),packages/*/!(lib)/**}{.js,.jsx,.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
}
}