forked from jupyterlab-contrib/jupyter-ui-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.25 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
58
59
60
61
62
63
64
65
{
"name": "@jupyter/root-ui-toolkit",
"version": "0.15.2",
"private": true,
"description": "UI Toolkit for Jupyter",
"keywords": [
"jupyter"
],
"homepage": "https://jupyterlab-contrib.github.io/jupyter-ui-toolkit/",
"bugs": {
"url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Project Jupyter"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:prod": "lerna run --scope @jupyter/web-components --scope @jupyter/react-components build && lerna run --scope jupyter-ui-demo build:prod",
"clean": "lerna run clean",
"format": "yarn stylelint && prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"format:check": "yarn stylelint:check && prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"lint": "lerna run eslint",
"lint:check": "lerna run eslint:check",
"stylelint": "yarn stylelint:check --fix",
"stylelint:check": "stylelint --cache \"packages/lab-example/style/**/*.css\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^7.0.0",
"prettier": "^3.0.0",
"stylelint": "^15.10.1",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.0.0"
},
"resolutions": {
"file-system-cache": "<2.4.0 || >2.4.0"
},
"packageManager": "yarn@3.6.0",
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
"rules": {
"property-no-vendor-prefix": null,
"selector-class-pattern": null,
"selector-no-vendor-prefix": null,
"value-no-vendor-prefix": null
}
}
}