-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 3.75 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
{
"name": "eodag-labextension",
"version": "3.1.3",
"description": "Searching remote sensed imagery from various image providers",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://gitlab.cloud-espace.si.c-s.fr/vre/ai4geo/lot4/eodag-labextension",
"bugs": {
"url": "https://gitlab.cloud-espace.si.c-s.fr/vre/ai4geo/lot4/eodag-labextension/-/issues"
},
"license": "Apache v2.0",
"author": {
"name": "CS Group",
"email": "admin@geostorm.eu"
},
"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}",
"schema/*.json",
"node_modules/leaflet/dist/**/*.{css,png}",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://gitlab.cloud-espace.si.c-s.fr/vre/ai4geo/lot4/eodag-labextension.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf eodag_labextension/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@jupyterlab/application": "^3.0.7",
"@jupyterlab/apputils": "^3.0.5",
"@jupyterlab/cells": "^3.0.7",
"@jupyterlab/notebook": "^3.0.7",
"@terraformer/wkt": "^2.0.7",
"@types/leaflet": "^1.6.0",
"@types/leaflet-draw": "^1.0.1",
"@types/lodash": "^4.14.149",
"@types/luxon": "^1.26.5",
"@types/prop-types": "^15.7.3",
"@types/react-dom": "~16.9.5",
"@types/react-leaflet": "~2.5.0",
"@types/react-select": "^4.0.15",
"@types/react-virtualized": "~9.21.7",
"isomorphic-fetch": "^2.2.1",
"leaflet": "^1.6.0",
"leaflet-draw": "^1.0.4",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-datepicker": "^4.1.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.6.4",
"react-leaflet": "~2.0.0",
"react-leaflet-draw": "0.19.0",
"react-modal": "~3.8.1",
"react-select": "^4.3.0",
"react-tooltip": "~4.2.7",
"react-virtualized": "~9.21.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@types/classnames": "^2.2.11",
"@types/isomorphic-fetch": "0.0.35",
"@types/react-datepicker": "^3.1.8",
"@types/react-modal": "^3.8.1",
"@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",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "4.2.4"
},
"resolutions": {
"**/@types/react": "~16.8.4",
"**/@types/react-dom": "~16.8.4",
"**/@types/prop-types": "^15.5.8"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "eodag_labextension/labextension"
},
"styleModule": "style/index.js"
}