-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.66 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
{
"private": true,
"name": "@gt-coar/jupyterlab-theme-root",
"version": "0.0.0",
"description": "an unofficial Georgia Tech theme for JupyterLab",
"license": "BSD-3-Clause",
"author": "jupyterlab-gt-coar-theme contributors <coar@gaetch.edu>",
"homepage": "https://github.com/gt-coar/jupyterlab-gt-coar-theme",
"repository": {
"type": "git",
"url": "https://github.com/gt-coar/jupyterlab-gt-coar-theme"
},
"bugs": {
"url": "https://github.com/gt-coar/jupyterlab-gt-coar-theme/issues"
},
"scripts": {
"bootstrap": "jlpm --prefer-offline --ignore-optional --ignore-scripts && jlpm clean && jlpm lint && jlpm build",
"build": "jlpm build:lib && jlpm build:ext",
"build:ext": "lerna run build:ext",
"build:lib": "lerna run build:lib",
"clean": "rimraf \"./packages/*/lib\" \"packages/*/*.tsbuildinfo\" ./py_src/jupyterlab_gt_coar_theme/labextensions",
"lint": "jlpm lint:prettier:package-json && jlpm lint:prettier",
"lint:prettier": "prettier --list-different --write \"*.{json,yml,md}\" \"{.binder,.github,py_src}/**/*.{json,md,yml}\" \"./packages/**/*.{ts,tsx,js,jsx,css,json,md,yml}\"",
"lint:prettier:package-json": "prettier-package-json --write ./package.json \"packages/*/package.json\"",
"watch:ext": "lerna run watch:ext --stream --parallel",
"watch:lib": "lerna run watch:lib --stream"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^4.0.0",
"prettier": "^2.3.2",
"prettier-package-json": "^2.6.0",
"react": "^17.0.1",
"rimraf": "^3.0.2",
"typescript": "~4.3.4"
},
"prettier": {
"singleQuote": true,
"proseWrap": "always",
"printWidth": 88
}
}