-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "@openeo/earthengine-driver",
"version": "1.1.0-dev20240712",
"stac_version": "1.0.0",
"description": "An openEO driver for Google Earth Engine.",
"main": "src/server.js",
"type": "module",
"scripts": {
"dev": "nodemon src/server.js --trace-warnings",
"up": "npm run sync && pm2 start src/server.js",
"down": "pm2 stop src/server.js",
"sync": "node src/sync.js",
"adduser": "node src/adduser.js",
"deluser": "node src/deluser.js",
"users": "node src/users.js",
"stats": "node src/stats.js",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --detectOpenHandles",
"debug": "node --nolazy --inspect src/server.js",
"lint": "eslint src/"
},
"author": "Matthias Mohr",
"license": "Apache-2.0",
"homepage": "http://openeo.org",
"bugs": {
"url": "https://github.com/Open-EO/openeo-earthengine-editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Open-EO/openeo-earthengine-editor.git"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-n": "^16.6.2",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"nodemon": "^3.0.2",
"pm2": "^5.3.0"
},
"dependencies": {
"@google-cloud/storage": "^7.7.0",
"@google/earthengine": "^0.1.385",
"@openeo/js-commons": "^1.5.0",
"@openeo/js-processgraphs": "^1.4.1",
"@seald-io/nedb": "^4.0.4",
"ajv": "^6.12.6",
"axios": "^1.6.5",
"check-disk-space": "^3.4.0",
"epsg-index": "^2.0.0",
"fs-extra": "^11.2.0",
"luxon": "^3.4.4",
"proj4": "^2.10.0",
"restify": "^11.1.0"
},
"engines": {
"node": ">=17.0.0"
},
"nodemonConfig": {
"watch": [
"src/",
"server.js"
]
}
}