-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.64 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.64 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "jupyter-vcdat",
"version": "2.3.9",
"description": "A vCDAT extension for JupyterLab.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/CDAT/jupyter-vcdat",
"bugs": {
"url": "https://github.com/CDAT/jupyter-vcdat.git/issues"
},
"license": "BSD-3-Clause",
"author": "LLNL CDAT team",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff,woff2,ttf}",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CDAT/jupyter-vcdat.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w",
"task": "ts-node ./tasksfile.ts",
"link": "jupyter labextension link . --nobuild",
"prepare": "npm run clean && npm run build",
"scss-watch": "node-sass --watch style/scss -o style/css",
"scss": "node-sass style/scss -o style/css"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix",
"npx prettier --write",
"git add"
],
"*.py": [
"flake8 --show-source --statistics --ignore=F999,F405,E121,E123,E126,E226,E24,E402,E704,W504 --max-line-length=120"
]
},
"husky": {
"hooks": {
"pre-commit": "npx task checkVersion && tsc --noEmit && lint-staged"
}
},
"dependencies": {
"@jupyterlab/application": "^2.2.6",
"@jupyterlab/apputils": "^2.2.6",
"@jupyterlab/cells": "^2.2.7",
"@jupyterlab/console": "^2.2.7",
"@jupyterlab/coreutils": "^4.2.5",
"@jupyterlab/docregistry": "^2.2.4",
"@jupyterlab/filebrowser": "^2.2.5",
"@jupyterlab/mainmenu": "^2.2.4",
"@jupyterlab/notebook": "^2.2.7",
"@jupyterlab/outputarea": "^2.2.4",
"@jupyterlab/services": "^5.2.5",
"@lumino/algorithm": "^1.3.3",
"@lumino/commands": "^1.11.4",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.14.1",
"autobind-decorator": "^2.4.0",
"bootstrap": "^4.5.2",
"bootstrap-slider": "^11.0.2",
"jquery": "^3.5.1",
"jupyterlab-tutorial": "^1.0.6",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"query-string": "^6.13.6",
"rc-slider": "^9.6.1",
"react": "~16.9.0",
"react-compound-slider": "^2.5.0",
"react-dom": "~16.9.0",
"react-html-parser": "^2.0.2",
"react-list": "^0.8.16",
"react-load-script": "0.0.6",
"react-toastify": "^6.0.9",
"reactstrap": "8.4.1",
"remove": "^0.1.5",
"ts-dedent": "^2.0.0"
},
"devDependencies": {
"@types/bootstrap-slider": "^9.9.0",
"@types/domhandler": "2.4.1",
"@types/jquery": "^3.5.4",
"@types/lodash": "^4.14.164",
"@types/rc-slider": "^8.6.5",
"@types/react": "^16.9.55",
"@types/react-bootstrap": "^0.32.20",
"@types/react-dom": "^16.9.9",
"@types/react-html-parser": "^2.0.1",
"@types/react-list": "^0.8.4",
"@types/reactstrap": "8.4.1",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"compare-versions": "^3.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"node": "^14.15.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"tasksfile": "^5.1.1",
"ts-node": "^9.0.0",
"typescript": "^3.8.3"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
}
}