forked from jupyterlite/jupyterlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.93 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
{
"name": "@jupyterlite/root",
"version": "0.1.0b13",
"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/*",
"packages/*"
]
},
"scripts": {
"bootstrap": "yarn && yarn clean && yarn build && yarn lint && yarn test",
"build": "yarn build:lib && yarn 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:python": "lerna run build:python",
"build:test": "lerna run build:test",
"clean": "lerna run clean",
"deduplicate": "yarn-deduplicate -s fewer --fail",
"docs": "typedoc",
"eslint:check": "eslint . --ext .ts,.tsx --cache",
"eslint:fix": "eslint . --ext .ts,.tsx --fix --cache",
"install": "lerna bootstrap",
"lint": "yarn prettier:fix && yarn eslint:fix",
"lint:check": "yarn prettier:check && yarn eslint:check",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"prettier:fix": "prettier --list-different --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"publish": "yarn clean && yarn build && lerna publish",
"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 yarn watch",
"watch:lib": "lerna exec --stream --scope @jupyterlite/metapackage yarn watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"resolutions": {
"json-schema": "^0.4.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@jupyterlab/buildutils": "~3.4.7",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"extra-watch-webpack-plugin": "^1.0.3",
"husky": "^3",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"jest-raw-loader": "^1.0.1",
"jest-summary-reporter": "^0.0.2",
"lerna": "^4.0.0",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "~2.5.1",
"rimraf": "^3.0.2",
"shell-quote": "^1.7.2",
"svgo": "^2.3.0",
"typedoc": "~0.22.10",
"typedoc-plugin-markdown": "~3.11.13",
"typescript": "~4.5.2",
"yarn-deduplicate": "^3.1.0"
}
}