forked from ploomber/jupysql-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 4.89 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "jupysql-plugin",
"version": "0.4.3",
"description": "Jupyterlab extension for JupySQL",
"private": true,
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/ploomber/jupysql-plugin.git",
"bugs": {
"url": "https://github.com/ploomber/jupysql-plugin.git/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Ploomber",
"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}",
"settings-schema/**/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/ploomber/jupysql-plugin.git.git"
},
"workspaces": {
"packages": [
"jupysql_plugin",
"ui-tests"
]
},
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc --sourceMap",
"build:lib:prod": "tsc",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"clean:labextension": "rimraf jupysql_plugin/labextension jupysql_plugin/_version.py",
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint src/ --cache --ext .ts,.tsx",
"install:extension": "jlpm build",
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"@comment": {
"dependencies": {
"@lumino/widgets": "An official library to implement the frontend of the widgets: https://github.com/jupyterlab/lumino"
}
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@jupyter-widgets/base": "^6.0.4",
"@jupyterlab/application": "^4.0.5",
"@jupyterlab/apputils": "^4.1.5",
"@jupyterlab/cells": "^4.0.5",
"@jupyterlab/codeeditor": "^4.0.5",
"@jupyterlab/codemirror": "^4.0.5",
"@jupyterlab/completer": "^4.0.5",
"@jupyterlab/notebook": "^4.0.5",
"@jupyterlab/settingregistry": "^4.0.5",
"@jupyterlab/statedb": "^4.0.5",
"@lumino/widgets": "^2.3.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.4",
"@types/codemirror": "^5.60.7",
"@types/underscore": "^1.11.4",
"clean": "^4.0.2",
"react": "^17.0.2",
"sql-formatter": "^12.2.0",
"underscore": "^1.13.6"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@jupyterlab/builder": "^4.0.5",
"@jupyterlab/testutils": "^4.0.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.2",
"@types/jest": "^29.0.0",
"@types/jest-when": "^3.5.2",
"@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-prettier": "^3.1.4",
"jest": "^29.0.0",
"jest-when": "^3.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "~24.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"schemaDir": "settings-schema",
"outputDir": "jupysql_plugin/labextension",
"sharedPackages": {}
}
}