-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.98 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.98 KB
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
{
"name": "@datalayer/jupyter-ui",
"version": "0.0.0",
"license": "MIT",
"private": true,
"main": "lib/index.js",
"files": [
"lib",
"style"
],
"keywords": [
"jupyter",
"react",
"jupyterlab",
"datalayer"
],
"engines": {
"node": ">= 20.0.0"
},
"os": [
"darwin",
"linux"
],
"scripts": {
"build": "lerna run build",
"build:example": "lerna run --parallel --scope @datalayer/*' build:example",
"clean": "lerna run clean && rimraf node_modules lib dist build tsconfig.tsbuildinfo",
"deploy": "lerna run deploy",
"docs": "lerna run --scope' @datalayer/jupyter-react-docs' start",
"kill": "fkill -s :3208 && fkill -s :8686",
"ls": "lerna ls",
"start": "lerna run --parallel --scope @datalayer/jupyter-react start",
"start-local": "lerna run --parallel --scope @datalayer/jupyter-react start-local",
"jupyter:server": "./dev/sh/start-jupyter-server.sh",
"jupyter:ui:vite": "lerna run --parallel --scope @datalayer/jupyter-vite-example start",
"jupyter:ui:docusaurus": "lerna run --parallel --scope @datalayer/jupyter-docusaurus-example start",
"jupyter:ui:lexical": "lerna run --parallel --scope @datalayer/jupyter-lexical-example start",
"jupyter:ui:nextjs": "lerna run --parallel --scope @datalayer/jupyter-nextjs-example dev",
"jupyter:ui:slate": "lerna run --parallel --scope @datalayer/jupyter-slate-example start",
"storybook": "lerna run --scope @datalayer/jupyter-ui-storybook storybook",
"test": "lerna run test",
"lint": "eslint 'packages/react/src/**/*.{js,jsx,ts,tsx}' 'packages/lexical/src/**/*.{js,jsx,ts,tsx}' 'storybook/src/**/*.{js,jsx,ts,tsx}' --quiet",
"lint:fix": "eslint 'packages/react/src/**/*.{js,jsx,ts,tsx}' 'packages/lexical/src/**/*.{js,jsx,ts,tsx}' 'storybook/src/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,mdx,yml,yaml,css,html}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,mdx,yml,yaml,css,html}\"",
"type-check": "tsc --noEmit",
"check": "npm run format:check && npm run lint && npm run type-check",
"check:fix": "npm run format && npm run lint:fix && npm run type-check",
"postinstall": "patch-package",
"prepare": "husky"
},
"workspaces": [
"docs",
"examples/docusaurus",
"examples/lexical",
"examples/vite",
"packages/*",
"storybook"
],
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.33.0",
"@types/requirejs": "^2.1.37",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"concurrently": "^6.2.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"fkill-cli": "^8.0.0",
"husky": "^9.1.7",
"lerna": "^6.6.2",
"lint-staged": "^16.1.5",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"typescript-eslint": "^8.39.1"
},
"resolutions": {
"@microsoft/fast-colors": "5.3.1",
"@microsoft/fast-components": "2.30.6",
"@microsoft/fast-element": "1.13.0",
"@microsoft/fast-foundation": "2.49.6",
"@microsoft/fast-react-wrapper": "0.3.24",
"@microsoft/fast-web-utilities": "5.4.1",
"@microsoft/load-themed-styles": "1.10.295",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.8.3"
},
"overrides": {
"@microsoft/fast-colors": "5.3.1",
"@microsoft/fast-components": "2.30.6",
"@microsoft/fast-element": "1.13.0",
"@microsoft/fast-foundation": "2.49.6",
"@microsoft/fast-react-wrapper": "0.3.24",
"@microsoft/fast-web-utilities": "5.4.1",
"@microsoft/load-themed-styles": "1.10.295",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.8.3"
}
}