-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "@openeo/hub",
"version": "0.5.0",
"author": "openEO Consortium",
"contributors": [
{
"name": "Christoph Friedrich"
},
{
"name": "Matthias Mohr"
}
],
"description": "Platform for discovering openEO back-ends and exchanging process graphs with the openEO community.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Open-EO/openeo-hub/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Open-EO/openeo-hub.git"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"crawl": "node crawl.js",
"crawl:verbose": "node crawl.js --verbose",
"drop": "node drop.js",
"start:backend": "node server.js",
"start:frontend": "vue-cli-service serve --port 9000",
"build": "vue-cli-service build",
"start": "vue-cli-service build && node server.js",
"start:dev": "vue-cli-service build --mode development && node server.js"
},
"dependencies": {
"@openeo/js-commons": "^1.0.0",
"@openeo/js-processgraphs": "^1.0.0",
"@openeo/vue-components": "^2.3.3",
"axios": "^1.0.0",
"moment": "^2.22.2",
"mongodb": "^4.9.1",
"restify": "^10.0.0",
"vue": "^2.6.0",
"vue-multiselect": "^2.1.6",
"vue2-leaflet": "^1.2.3"
},
"devDependencies": {
"@vue/cli-service": "^5.0.0",
"sass": "^1.77.4",
"sass-loader": "^14.2.1",
"vue-template-compiler": "^2.5.22"
}
}