-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.34 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
{
"name": "gfw-ogr-api",
"version": "1.1.0",
"description": "Global forest watch - OGR API",
"main": "app/index.js",
"scripts": {
"dev": "NODE_PATH=app/src nodemon app/index.js",
"start": "NODE_PATH=app/src node app/index",
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js test",
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vizzuality/gfw-ogr-api.git"
},
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "https://vizzuality.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Vizzuality/gfw-ogr-api/issues"
},
"homepage": "https://github.com/Vizzuality/gfw-ogr-api#readme",
"dependencies": {
"bunyan": "^1.8.15",
"config": "^3.3.9",
"rw-api-microservice-node": "^5.1.3",
"jsonapi-serializer": "^3.6.7",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"@aws-sdk/client-s3": "3.200.0",
"@aws-sdk/s3-request-presigner": "3.200.0",
"@aws-sdk/types": "3.200.0",
"koa-convert": "^1.2.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-simple-healthcheck": "^0.0.1",
"koa-router": "^12.0.0",
"koa-validate": "^1.0.7",
"mapshaper": "^0.4.163",
"ogr2ogr": "^4.0.1",
"unzipper": "^0.10.14",
"xlsx": "^0.15.6"
},
"devDependencies": {
"chai": "^4.3.8",
"chai-http": "^4.4.0",
"chai-datetime": "^1.8.0",
"@babel/eslint-parser": "^7.22.11",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.33.2",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-simple-nyc": "^3.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"nodemon": "^3.0.1",
"nyc": "^15.1.0"
},
"engines": {
"node": "~20.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}