-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 4.01 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
136
137
{
"name": "guidedstats",
"version": "0.1.0",
"description": "Inline data profiles for pandas dataframes in jupyter",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/cmudig/GuidedStats",
"bugs": {
"url": "https://github.com/cmudig/GuidedStats/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Yuqi(Adam) Zhang",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/cmudig/GuidedStats"
},
"scripts": {
"build": "webpack --mode=development && jupyter labextension build --development=True .",
"build:prod": "webpack --mode=production && jupyter labextension build .",
"clean": "npm run clean:lib && npm run clean:nbextension && npm run clean:labextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf guidedstats/labextension",
"clean:nbextension": "rimraf guidedstats/nbextension/static/index.js",
"lint": "eslint . --ext .ts,.tsx,.svelte --fix",
"lint:check": "eslint . --ext .ts,.tsx,.svelte",
"prepack": "npm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:src": "webpack --watch --mode=development",
"watch:labextension": "jupyter labextension watch .",
"install:extension": "npm ci && jlpm build",
"format": "npx prettier -w ."
},
"dependencies": {
"@jupyter-widgets/base": "^1.1 || ^2 || ^3 || ^4 || ^6",
"@jupyterlab/application": "^3.4.8",
"@jupyterlab/notebook": "^3.4.8",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-shape": "^3.1.0",
"d3-time": "^3.0.0",
"d3-time-format": "^4.1.0",
"postcss-loader": "^7.3.3"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@bulatdashiev/svelte-slider": "^1.0.3",
"@gitgraph/js": "^1.4.0",
"@jupyterlab/builder": "^3.0.0",
"@tsconfig/svelte": "^5.0.2",
"@types/dagre-d3": "^0.6.3",
"@types/lodash": "^4.14.186",
"@types/node": "^20.10.6",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"acorn": "^7.2.0",
"autoprefixer": "^10.4.15",
"css-loader": "^3.2.0",
"cytoscape-dagre": "^2.5.0",
"d3": "^7.8.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-svelte": "^2.33.2",
"fs-extra": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"lodash": "^4.17.21",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"postcss": "^8.4.35",
"prettier": "^2.0.5",
"prettier-plugin-svelte": "^2.7.1",
"rimraf": "^2.6.2",
"sass": "^1.70.0",
"source-map-loader": "^1.1.3",
"style-loader": "^1.0.0",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard": "~25.0.0",
"stylelint-prettier": "^2.0.0",
"svelte": "^4.2.1",
"svelte-collapse": "^0.1.1",
"svelte-katex": "^0.1.2",
"svelte-loader": "^3.1.9",
"svelte-loading-spinners": "^0.1.7",
"svelte-materialify": "^0.3.11",
"svelte-preprocess": "^5.1.3",
"svg-url-loader": "^8.0.0",
"tailwindcss": "^3.4.0",
"ts-loader": "^8.0.0",
"typescript": "^5.3.3",
"vega-embed": "^6.23.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.0.0"
},
"jupyterlab": {
"extension": "lib/index",
"outputDir": "guidedstats/labextension/",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
},
"@jupyterlab/notebook": {
"bundled": false,
"singleton": true
}
}
},
"jupyter-releaser": {
"hooks": {
"before-build-npm": [
"python -m pip install jupyterlab~=3.1",
"jlpm"
],
"before-build-python": [
"jlpm clean"
]
}
}
}