This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.19 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "jupyter-project",
"version": "2.0.0-rc.1",
"description": "An JupyterLab extension to handle project and files template.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"template"
],
"homepage": "https://github.com/fcollonval/jupyter-project",
"bugs": {
"url": "https://github.com/fcollonval/jupyter-project/issues"
},
"license": "BSD-3-Clause",
"author": "Frederic Collonval",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,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/fcollonval/jupyter-project.git"
},
"scripts": {
"build": "jlpm run build:lib",
"build:labextension": "cd jupyter_project && rimraf labextension && mkdirp labextension && cd labextension && npm pack ../..",
"build:lib": "tsc",
"build:all": "jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyter_project/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"lint": "eslint . --ext .ts,.tsx --fix && jlpm run embedme README.md",
"lint:check": "eslint . --ext .ts,.tsx && jlpm run embedme --verify README.md",
"prepare": "jlpm run clean && jlpm run build",
"test": "jest --coverage",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/coreutils": "^4.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/git": "^0.20.0",
"@jupyterlab/launcher": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0",
"@jupyterlab/services": "^5.0.0",
"@jupyterlab/statedb": "^2.1.0",
"@jupyterlab/statusbar": "^2.0.0",
"@jupyterlab/ui-components": "^2.0.0",
"@lumino/signaling": "^1.3.0",
"@lumino/widgets": "^1.9.0",
"@material-ui/core": "^4.9.13",
"ajv": "^6.12.2",
"jupyterlab_conda": "^2.1.2",
"jupyterlab_toastify": "^4.0.0",
"uniforms": "^2.6.7",
"uniforms-bridge-json-schema": "^2.6.7",
"uniforms-material": "^2.6.7",
"yaml": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@jupyterlab/testutils": "^2.0.0",
"@types/jest": "^25.2.3",
"@types/react": "~16.9.16",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"embedme": "^1.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.0.0",
"mkdirp": "^1.0.3",
"prettier": "^1.16.4",
"react": "~16.9.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.0.0",
"typescript": "~3.7.0"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip",
"conda"
],
"base": {
"name": "jupyter-project"
}
}
},
"extension": true
},
"resolutions": {
"@types/react": "~16.9.0"
}
}