forked from QuantStack/jupyterlab-drawio
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.2 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
{
"private": true,
"name": "-ipydrawio-root-",
"scripts": {
"bootstrap": "jlpm --prefer-offline --ignore-optional",
"deduplicate": "yarn-deduplicate -s fewer --fail",
"eslint": "cd packages && eslint --cache --fix --ext .js,.ts,.tsx */src",
"eslint:check": "cd packages && eslint --cache --ext .js,.ts,.tsx */src"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"ansi-regex": "5.0.1",
"json-schema": ">=0.4.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.2.0",
"json-schema-to-typescript": "^11.0.2",
"prettier": "^2.8.4",
"prettier-package-json": "^2.8.0",
"prettier-plugin-sort-json": "^1.0.0",
"typedoc": "^0.23.26",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "~4.9.4",
"webpack": "^5.75.0",
"yarn-deduplicate": "^6.0.1"
},
"prettier": {
"singleQuote": true,
"proseWrap": "always",
"jsonRecursiveSort": true,
"printWidth": 88
}
}