-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 4.23 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 4.23 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
{
"name": "jupyter-nbclassic-deps",
"private": true,
"version": "4.0.0",
"description": "Jupyter NbClassic nodejs dependencies",
"author": "Jupyter Developers",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/jupyter/nbclassic.git"
},
"scripts": {
"yarn:copy-marked": "node tools/copy-marked.js",
"yarn:copy-remote-dependencies": "node tools/copy-remote-dependencies.js",
"yarn": "yarn install && npm run yarn:copy-marked && npm run yarn:copy-remote-dependencies",
"build:webpack": "webpack --mode production",
"build:notebook": "node tools/build-main.js notebook",
"build:tree": "node tools/build-main.js tree",
"build:edit": "node tools/build-main.js edit",
"build:terminal": "node tools/build-main.js terminal",
"build:auth": "node tools/build-main.js auth",
"build:fr-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/fr_FR/LC_MESSAGES/nbjs.po nbclassic/i18n/fr_FR/LC_MESSAGES/nbjs.json",
"build:ja-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/ja_JP/LC_MESSAGES/nbjs.po nbclassic/i18n/ja_JP/LC_MESSAGES/nbjs.json",
"build:nl-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/nl/LC_MESSAGES/nbjs.po nbclassic/i18n/nl/LC_MESSAGES/nbjs.json",
"build:ru-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/ru_RU/LC_MESSAGES/nbjs.po nbclassic/i18n/ru_RU/LC_MESSAGES/nbjs.json",
"build:zh-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/zh_CN/LC_MESSAGES/nbjs.po nbclassic/i18n/zh_CN/LC_MESSAGES/nbjs.json",
"build:translations": "npm run build:fr-translation && npm run build:ja-translation && npm run build:nl-translation && npm run build:ru-translation && npm run build:zh-translation",
"build:js": "npm run build:notebook && npm run build:tree && npm run build:edit && npm run build:terminal && npm run build:auth && npm run build:translations",
"build:css-ipython": "lessc --source-map --include-path='nbclassic/static/style' nbclassic/static/style/ipython.less nbclassic/static/style/ipython.min.css",
"build:css-style": "lessc --source-map --include-path='nbclassic/static/style' nbclassic/static/style/style.less nbclassic/static/style/style.min.css",
"build:css": "npm run build:css-ipython && npm run build:css-style",
"build": "npm run yarn && npm run build:webpack && npm run build:js && npm run build:css",
"build:watch": "npm run watch",
"watch:css": "onchange 'nbclassic/static/**/*.less' -- npm run build:css",
"watch:js": "onchange 'nbclassic/static/**/!(*.min).js' 'bower.json' -- npm run build:js",
"watch": "npm-run-all --parallel watch:*",
"postinstall": "node postinstall.js && npx patch-package"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@jupyterlab/apputils": "^3.6.1",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"commander": "^6.0.0",
"copy-webpack-plugin": "^13.0.1",
"gettext-parser": "2.0.0",
"gettext-to-messageformat": "0.3.1",
"less": "^4.2.2",
"onchange": "^6.0.0",
"po2json": "1.0.0-beta-3",
"requirejs": "^2.3.6",
"webpack": "^5.104.1",
"webpack-cli": "^4.7.2"
},
"devDependenciesNotes": {
"@jupyterlab/apputils": "Restricted to 3.6.x because v4.x changes sanitizer API breaking Markdown cells",
"pos2json": "Using a beta 1.0.0 version because previous version have security problems, and no 1.0.0 release"
},
"dependencies": {
"backbone": "~1.6.0",
"bootstrap": "~3.4.1",
"bootstrap-tour": "0.12.0",
"codemirror": "~5.58.2",
"es6-promise": "~1.0",
"font-awesome": "4.7.0",
"google-caja-sanitizer": "~1.0.4",
"jed": "~1.1.1",
"jquery": "~3.7.1",
"jquery-typeahead": "~2.11.1",
"jquery-ui": "~1.13.3",
"marked": "~4.0.10",
"mathjax": "^2.7.4",
"moment": "~2.29.4",
"react": "~16.0.0",
"react-dom": "~16.0.0",
"requirejs-plugins": "~1.0.2",
"requirejs-text": "~2.0.16",
"text-encoding": "~0.1",
"underscore": "~1.13.7"
},
"engines": {
"yarn": "^1.22.22",
"node": ">=18"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}