forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 6.86 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@jupyterlab/repo-top",
"version": "0.0.1",
"private": true,
"files": [],
"workspaces": [
"dev_mode",
"examples/*",
"examples/federated/*",
"packages/*",
"packages/services/examples/node",
"packages/services/examples/browser",
"packages/services/examples/typescript-browser-with-output",
"packages/ui-components/examples/*",
"builder",
"buildutils",
"buildutils/template",
"buildutils/test-template",
"galata",
"galata/extension",
"tests",
"tests/test-*",
"testutils",
"jupyterlab/tests/mock_packages/extension",
"jupyterlab/tests/mock_packages/interop/*"
],
"scripts": {
"after:publish:assets": "jlpm && npm run build:utils && node buildutils/lib/publish --skip-publish",
"analyze": "npm run analyze:dev",
"analyze:dev": "cd dev_mode && npm run build --analyze",
"analyze:prod": "cd dev_mode && npm run build:prod --analyze",
"before:build:python": "node buildutils/lib/local-repository.js publish-dists --path ./dist && node buildutils/lib/update-core-mode.js",
"build": "npm run build:dev",
"prebuild:all": "npm run build:utils && npm run build:builder",
"build:all": "lerna run build:all",
"postbuild:all": "npm run build:testutils && npm run build:galata",
"build:builder": "cd builder && npm run build",
"build:core": "cd jupyterlab/staging && jlpm && (jlpm dlx yarn-berry-deduplicate -s fewerHighest || jlpm) && jlpm && npm run build",
"build:dev": "npm run integrity && npm run build:all && cd dev_mode && npm run build",
"build:dev:prod": "npm run integrity && npm run build:all && cd dev_mode && npm run build:prod",
"build:dev:prod:minimize": "npm run integrity && npm run build:all && cd dev_mode && npm run build:prod:minimize",
"build:dev:prod:minimize:report": "npm run integrity && npm run build:all && cd dev_mode && npm run build:prod:minimize:report",
"build:dev:prod:release": "npm run integrity && npm run build:all && cd dev_mode && npm run build:prod:release",
"build:examples": "lerna run build --scope \"@jupyterlab/example-*\" --concurrency 1",
"build:galata": "cd galata && npm run build",
"build:nbconvert:css": "cd packages/nbconvert-css && npm run build",
"build:packages": "cd packages/metapackage && npm run build",
"build:packages:scope": "lerna run build",
"build:src": "lerna run build --scope \"@jupyterlab/!(test-|example-|application-top)*\" --concurrency 1",
"build:test": "lerna run build:test",
"build:test:scope": "lerna run build:test --concurrency 1",
"build:testutils": "cd testutils && npm run build",
"build:utils": "cd buildutils && npm run build",
"bump:js:major": "node buildutils/lib/bump-js-major.js",
"bumpversion": "node buildutils/lib/bumpversion.js",
"clean": "npm run clean:dev && npm run clean:packages",
"clean:core": "cd jupyterlab/staging && npm run clean",
"clean:dev": "cd dev_mode && npm run clean",
"clean:examples": "node buildutils/lib/clean-packages.js examples",
"clean:galata": "cd galata && npm run clean",
"clean:packages": "node buildutils/lib/clean-packages.js packages",
"clean:slate": "python clean.py && python -m pip install -v -e .",
"clean:src": "npm run clean",
"clean:test": "lerna run clean --scope \"@jupyterlab/test-*\"",
"clean:utils": "cd buildutils && npm run clean",
"coverage": "lerna run coverage --scope \"@jupyterlab/test-*\" --stream --concurrency 1",
"create:package": "node buildutils/lib/create-package.js",
"create:test": "node buildutils/lib/create-test-package.js",
"deduplicate": "jlpm dlx yarn-berry-deduplicate -s fewerHighest && jlpm install",
"docs": "typedoc --options typedoc.js",
"docs:init": "lerna run docs:init",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx --cache --fix .",
"eslint:check": "eslint --ext .js,.jsx,.ts,.tsx --cache .",
"eslint:check:typed": "eslint --config .eslintrc.typecheck.js --ext .js,.jsx,.ts,.tsx --cache .",
"eslint:files": "eslint --fix",
"eslint:typed": "eslint --config .eslintrc.typecheck.js --cache --ext .js,.jsx,.ts,.tsx --fix .",
"get:dependency": "node buildutils/lib/get-dependency.js",
"postinstall": "node scripts/ensure-buildutils.js",
"integrity": "node scripts/ensure-buildutils.js && node buildutils/lib/ensure-repo.js",
"lint": "jlpm && jlpm prettier && jlpm eslint && jlpm stylelint",
"lint:check": "jlpm prettier:check && jlpm eslint:check && jlpm stylelint:check",
"patch:release": "node buildutils/lib/patch-release.js",
"prepare:python-release": "node buildutils/lib/prepare-python-release.js",
"prepublish:check": "node buildutils/lib/prepublish-check.js",
"prettier": "prettier --list-different --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:files": "prettier --write",
"publish:js": "node buildutils/lib/publish.js",
"remove:dependency": "node buildutils/lib/remove-dependency.js",
"remove:package": "node buildutils/lib/remove-package.js",
"remove:sibling": "node buildutils/lib/remove-package.js",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"{packages/*,galata}/style/**/*.css\" \"{examples/*,docs/**}/*.css\"",
"stylelint:files": "stylelint --fix",
"test": "lerna run test --scope \"@jupyterlab/!(galata|template)*\" --concurrency 1 --stream",
"test:all": "lerna run test --scope \"@jupyterlab/!(galata|template)*\" --concurrency 1 --stream --no-bail",
"test:examples": "python examples/test_examples.py",
"test:galata": "lerna run test --scope \"@jupyterlab/galata\" --concurrency 1 --stream",
"test:scope": "lerna run test --concurrency 1 --stream",
"test:summary": "lerna run test --scope \"@jupyterlab/!(galata|template)*\" --parallel --no-bail | grep -Ei '.* test.*(failed|passed|total|completed|skipped)' | sort",
"update:dependency": "node buildutils/lib/update-dependency.js --lerna",
"watch": "python scripts/watch_dev.py",
"watch:main": "npm run watch",
"watch:packages": "python scripts/watch_packages.py"
},
"resolutions": {
"@types/react": "^18.0.26",
"react": "^18.2.0",
"yjs": "^13.5.40"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~6.13.2",
"@typescript-eslint/parser": "~6.13.2",
"eslint": "~8.55.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-react": "~7.33.2",
"prettier": "~3.0.0",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-csstree-validator": "^3.0.0",
"stylelint-prettier": "^4.0.0"
},
"devDependencies": {
"lerna": "^7.1.4",
"typedoc": "~0.25.12",
"typedoc-plugin-mdn-links": "^3.1.20"
}
}