-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
96 lines (96 loc) · 3.31 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "jupyterlab-notifications",
"version": "0.1.0",
"description": "Toast notifications for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupytercalpoly/jupyterlab-notifications.git",
"bugs": {
"url": "https://github.com/jupytercalpoly/jupyterlab-notifications.git/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "andrii ieroshenko, harshit mittal",
"email": "[email protected]"
},
"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}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupytercalpoly/jupyterlab-notifications.git.git"
},
"scripts": {
"build": "npm run build-css && jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab_notifications/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint": "jlpm && jlpm run prettier && jlpm run eslint",
"lint:check": "jlpm run prettier:check && jlpm run eslint:check",
"install:extension": "jlpm run build",
"watch": "npm run build-css && run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch .",
"build-css": "node-sass --include-path scss scss/main.scss style/main.css"
},
"dependencies": {
"@jupyterlab/application": "^3.1.0-beta.0",
"@jupyterlab/cells": "^3.1.0-beta.0",
"@jupyterlab/codeeditor": "^3.1.0-beta.0",
"@jupyterlab/notebook": "^3.1.0-beta.0",
"@jupyterlab/shared-models": "^3.1.0-beta.0",
"@jupyterlab/ui-components": "^3.1.0-beta.0",
"@lumino/widgets": "^1.23.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"bootstrap": "^4.6.0",
"jquery": "^1.9.1",
"jupyterlab_toastify": "^4.2.0",
"notistack": "^1.0.9",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-toastify": "^7.0.4",
"uuid": "^8.3.2",
"yjs": "^13.5.10"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "~24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"sass-loader": "^12.1.0",
"typescript": "~4.1.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_notifications/labextension"
}
}