forked from jupyterlite/jupyterlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.51 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@jupyterlite/root",
"version": "0.3.0a0",
"private": true,
"homepage": "https://github.com/jupyterlite/jupyterlite",
"bugs": {
"url": "https://github.com/jupyterlite/jupyterlite/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlite/jupyterlite"
},
"license": "BSD-3-Clause",
"author": "JupyterLite Contributors",
"workspaces": {
"packages": [
"app",
"app/consoles",
"app/edit",
"app/lab",
"app/notebooks",
"app/repl",
"app/tree",
"packages/*"
]
},
"scripts": {
"bootstrap": "jlpm && jlpm clean && jlpm build && jlpm lint",
"build": "jlpm build:lib && jlpm build:app",
"build:app": "lerna run build --stream --parallel --scope @jupyterlite/app",
"build:lib": "lerna run build --scope @jupyterlite/metapackage",
"build:prod": "lerna run build:prod",
"build:test": "lerna run build:test",
"clean": "lerna run clean",
"deduplicate": "jlpm dlx yarn-berry-deduplicate -s fewerHighest && jlpm install",
"docs": "typedoc",
"eslint:check": "eslint . --ext .ts,.tsx --cache",
"eslint:fix": "eslint . --ext .ts,.tsx --fix --cache",
"install": "lerna bootstrap",
"install:py": "python -m pip install -r requirements-editable.txt",
"lint": "jlpm prettier:fix && jlpm eslint:fix && jlpm lint:py",
"lint:check": "jlpm prettier:check && jlpm eslint:check && jlpm lint:py:check",
"lint:py": "jlpm lint:py:format && jlpm lint:py:ruff --fix-only",
"lint:py:check": "jlpm lint:py:format:check && jlpm lint:py:ruff:check",
"lint:py:format": "ruff format .",
"lint:py:format:check": "ruff format . --check",
"lint:py:ruff": "ruff .",
"lint:py:ruff:check": "ruff check .",
"pack:app": "npm pack app/ --pack-destination py/jupyterlite-core/jupyterlite_core/",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"prettier:check-src": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.yml}\"",
"prettier:fix": "prettier --list-different --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"serve": "node scripts/serve.js",
"serve:py": "cd app && python -m http.server -b 127.0.0.1 8000",
"test": "lerna run test",
"update:dependency": "node ./node_modules/@jupyterlab/buildutils/lib/update-dependency.js --lerna",
"watch": "run-p watch:lib watch:app",
"watch:app": "lerna exec --stream --stream --parallel --scope @jupyterlite/app jlpm watch",
"watch:lib": "lerna exec --stream --scope @jupyterlite/metapackage jlpm watch"
},
"prettier": {
"printWidth": 88,
"proseWrap": "always",
"singleQuote": true
},
"resolutions": {
"@types/react": "^18.0.26",
"json-schema": "^0.4.0",
"react": "^18.2.0",
"validator": "^13.7.0",
"yjs": "^13.5.40"
},
"devDependencies": {
"@jupyterlab/buildutils": "~4.1.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"extra-watch-webpack-plugin": "^1.0.3",
"jest": "^29.6.2",
"jest-junit": "^16.0.0",
"jest-raw-loader": "^1.0.1",
"lerna": "^6.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"shell-quote": "^1.8.1",
"svgo": "^3.0.1",
"typedoc": "~0.23.21",
"typedoc-plugin-markdown": "~3.14.0",
"typescript": "~5.1.6"
}
}