-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
{
"name": "@dharpa/jupyterlab-extension-ts-example",
"version": "0.1.0",
"description": "Basic JupyterLab 3.x extension. All development tools included.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://example.com",
"main": "src/index.ts",
"license": "TBD",
"author": "Author",
"scripts": {
"develop": "jupyter labextension develop . --overwrite --debug",
"watch": "jupyter labextension watch --development True .",
"eslint": "eslint src --ext .ts,.tsx,.js,.jsx --fix",
"eslint:check": "eslint src --ext .ts,.tsx,.js,.jsx",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:lib": "tsc",
"start": "webpack serve -c webpack.config.standalone.js"
},
"dependencies": {
"@jupyterlab/application": "3",
"@jupyterlab/launcher": "3",
"@jupyterlab/mainmenu": "3",
"@jupyterlab/nbformat": "3",
"@jupyterlab/notebook": "3",
"@jupyterlab/translation": "3",
"@lumino/coreutils": "1",
"@lumino/widgets": "1",
"react": "17",
"react-dom": "17",
"tailwindcss": "2"
},
"devDependencies": {
"@babel/core": "7",
"@babel/plugin-proposal-class-properties": "7",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "7",
"@babel/preset-react": "7",
"@babel/preset-typescript": "7",
"@jupyterlab/builder": "3",
"@types/node": "14",
"@types/react-dom": "17",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "4",
"babel-loader": "8",
"eslint": "7",
"eslint-config-prettier": "7",
"eslint-plugin-prettier": "3",
"eslint-plugin-react": "7",
"html-loader": "1",
"html-webpack-plugin": "5",
"postcss": "8",
"postcss-loader": "4",
"prettier": "2",
"rimraf": "3",
"sass": "1",
"sass-loader": "11",
"source-map-loader": "2",
"svg-url-loader": "7",
"typescript": "4",
"url-loader": "4",
"webpack": "5",
"webpack-dev-server": "3"
},
"sideEffects": [
"*.css",
"*.scss"
],
"jupyterlab": {
"extension": true,
"outputDir": "dharpa_jupyterlab_extension_example/labextension",
"webpackConfig": "./webpack.config.labext.js"
}
}