-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "@jupyter/real-time-collaboration",
"private": true,
"version": "2.0.3",
"description": "JupyterLab Extension enabling Real-Time Collaboration",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyter-collaboration",
"bugs": {
"url": "https://github.com/jupyterlab/jupyter-collaboration/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-collaboration.git"
},
"license": "BSD-3-Clause",
"author": {
"name": "Jupyter Development Team",
"email": "[email protected]"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:prod": "lerna run build:prod",
"build:test": "lerna run build:test",
"clean": "lerna run clean",
"clean:lib": "lerna run clean:lib",
"clean:all": "lerna run clean:all",
"docs": "typedoc",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "lerna run install:extension",
"lint": "jlpm prettier && jlpm eslint && jlpm stylelint",
"lint:check": "jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.json,.jsx,.css}\"",
"prettier:check": "jlpm prettier:base --check",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"packages/**/style/**/*.css\"",
"test": "lerna run test",
"test:cov": "lerna run test:cov",
"test:debug": "lerna run test:debug",
"test:debug:watch": "lerna run test:debug:watch",
"watch": "lerna run watch"
},
"devDependencies": {
"@types/react-plotly.js": "^2.6.3",
"@typescript-eslint/eslint-plugin": "~5.55.0",
"@typescript-eslint/parser": "~5.55.0",
"eslint": "~8.36.0",
"eslint-config-prettier": "~8.7.0",
"eslint-plugin-jest": "~27.2.1",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-react": "~7.32.2",
"lerna": "^6.5.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"stylelint": "^15.2.0",
"stylelint-config-recommended": "^10.0.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-prettier": "^3.0.0",
"typedoc": "~0.23.28",
"typescript": "~5.0.4"
},
"dependencies": {
"react-plotly.js": "^2.6.0"
}
}