-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.57 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
{
"name": "gfw-umd-forest-api",
"version": "1.1.0",
"description": "Global forest watch - UMD Forest API",
"main": "index.js",
"scripts": {
"coverage": "nyc ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 20000 'test/**/*.ts' --exit",
"test": "ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 20000 'test/**/*.ts' --exit",
"start": "ts-node --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"watch": "ts-node-dev --respawn --transpile-only --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"build": "tsc",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfw-api/gfw-story-api.git"
},
"keywords": [
"gfw",
"api",
"microservice",
"node",
"javascript",
"koa"
],
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "https://vizzuality.com/"
},
"engines": {
"node": "~20.4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gfw-api/gfw-umd-forest-api/issues"
},
"homepage": "https://github.com/gfw-api/gfw-umd-forest-api#readme",
"dependencies": {
"bunyan": "^1.8.15",
"cartodb": "0.5.1",
"config": "^3.3.9",
"jsonapi-serializer": "2.1.1",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-cash": "^4.1.1",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"koa-simple-healthcheck": "^0.0.1",
"lru-cache": "^10.0.0",
"mustache": "2.2.1",
"rw-api-microservice-node": "^5.1.3",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/config": "^3.3.0",
"@types/jsonapi-serializer": "^3.6.5",
"@types/mustache": "^4.2.2",
"@types/koa": "^2.13.8",
"@types/koa-cash": "^4.1.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.7",
"chai-datetime": "^1.8.0",
"chai-http": "^4.4.0",
"eslint": "^8.46.0",
"eslint-plugin-mocha": "^10.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"nyc": "^15.1.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}