-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
81 lines (81 loc) · 2.79 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
{
"name": "@jupytercad/jupytercad-root",
"version": "3.0.0-alpha.6",
"private": true,
"homepage": "https://github.com/jupytercad/JupyterCAD",
"repository": {
"type": "git",
"url": "https://github.com/jupytercad/JupyterCAD.git"
},
"license": "BSD-3-Clause",
"description": "A JupyterLab extension for 3D modelling.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"bugs": {
"url": "https://github.com/jupytercad/jupytercad/issues"
},
"author": {
"name": "JupyterCad contributors"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"workspaces": [
"packages/*",
"python/jupytercad_core",
"python/jupytercad_lab",
"python/jupytercad_app"
],
"scripts": {
"build": "lerna run build",
"build:prod": "lerna run build:prod",
"build:test": "lerna run build:test",
"bump:js:version": "lerna version --no-push --force-publish --no-git-tag-version --yes",
"clean": "lerna run clean",
"clean:all": "lerna run clean:all",
"eslint": "eslint . --ext .ts,.tsx --cache --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prettier": "prettier --no-error-on-unmatched-pattern --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"lint:check": "jlpm run prettier:check && jlpm run eslint:check",
"lint": "jlpm run prettier && jlpm run eslint",
"test": "lerna run test",
"dev": "python scripts/dev-install.py",
"build:packages": "python scripts/build_packages.py",
"watch:lib": "lerna run --stream watch",
"watch": "lerna watch -- lerna run build --scope=\\$LERNA_PACKAGE_NAME --include-dependents",
"build:lab": "lerna run --ignore @jupytercad/jupytercad-app build",
"build:app": "lerna run --ignore @jupytercad/jupytercad-lab build"
},
"resolutions": {
"@jupyter/collaboration": "^3.0.0",
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@lumino/coreutils": "^2.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@jupyterlab/services": " ^7.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"copy-webpack-plugin": "^10.0.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-prettier": "5.0.1",
"lerna": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"stylelint": "^15.10.1",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-csstree-validator": "^3.0.0",
"stylelint-prettier": "^4.0.0",
"typescript": "^5",
"webpack": "^5.76.3"
}
}