This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.52 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
{
"name": "@kaggle/jupyterlab",
"version": "1.0.1",
"description": "Official Kaggle extension for JupyterLab.",
"keywords": [
"kaggle",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/kaggle/jupyterlab",
"bugs": {
"url": "https://github.com/kaggle/jupyterlab/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Kaggle",
"email": "[email protected]"
},
"files": [
"lib/*/*.d.ts",
"lib/*/*.js",
"lib/*.d.ts",
"lib/*.js",
"schema/*.json",
"style/*.*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/kaggle/jupyterlab.git"
},
"scripts": {
"build": "yarn build:tsc",
"build:all": "yarn build:tsc && yarn build:docker",
"build:docker": "docker build -t kaggle/jupyterlab-dev:head -f Dockerfile .",
"build:tsc": "prettier --config prettierrc.js --write src/**/*{.ts,.tsx} && tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"docker": "docker run -it --rm -p 127.0.0.1:8888:8888 --name kaggle-jupyterlab-dev --mount type=bind,src=$(pwd),dst=/github.com/kaggle/jupyterlab kaggle/jupyterlab-dev:head",
"docker:win": "docker run -it --rm -p 127.0.0.1:8888:8888 --name kaggle-jupyterlab-dev --mount type=bind,src=%CD%,dst=/github.com/kaggle/jupyterlab kaggle/jupyterlab-dev:head",
"postinstall": "echo install server extension",
"test": "echo placeholder"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@jupyterlab/application": "^1.1.0",
"@jupyterlab/apputils": "^1.1.0",
"@jupyterlab/coreutils": "^3.1.0",
"@jupyterlab/docmanager": "^1.1.0",
"@jupyterlab/notebook": "^1.1.0",
"@jupyterlab/services": "^4.1.0",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/widgets": "^1.9.0",
"filesize": "^4.1.2",
"moment": "^2.24.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-dropzone": "^10.1.8",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@types/filesize": "^4.1.0",
"@types/jest": "^24.0.18",
"@types/styled-components": "4.1.0",
"jest": "^24.9.0",
"prettier": "1.18.2",
"rimraf": "^3.0.0",
"typescript": "~3.6.2"
},
"resolutions": {
"@types/react": "16.8.25"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
}
}