-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.65 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
{
"name": "gfw-user-api",
"version": "2.0.0",
"description": "Global forest watch - User API",
"main": "index.js",
"scripts": {
"start": "ts-node --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"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",
"watch": "ts-node-dev --respawn --transpile-only --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prepare": "husky install",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vizzuality/gfw-geostore-api.git"
},
"keywords": [
"gfw",
"api",
"microservice",
"node",
"javascript",
"koa"
],
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "https://vizzuality.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Vizzuality/gfw-geostore-api/issues"
},
"engines": {
"node": "~20.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"homepage": "https://github.com/Vizzuality/gfw-geostore-api#readme",
"dependencies": {
"bunyan": "^1.8.12",
"config": "^3.3.8",
"jsonapi-serializer": "^3.6.6",
"koa": "^2.11.0",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.2.1",
"koa-joi-router": "^8.0.0",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"koa-simple-healthcheck": "^0.0.1",
"lodash": "^4.17.21",
"mongoose": "^6.7.5",
"rw-api-microservice-node": "^5.1.3",
"sleep": "^6.3.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/chai-datetime": "^0.0.37",
"@types/config": "^3.3.0",
"@types/jsonapi-serializer": "^3.6.5",
"@types/koa": "^2.13.4",
"@types/koa-joi-router": "^8.0.3",
"@types/koa-logger": "^3.1.2",
"@types/lodash": "^4.14.177",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.10",
"@types/sinon": "^10.0.6",
"@types/sleep": "^0.0.8",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.4",
"chai-datetime": "^1.8.0",
"chai-http": "^4.3.0",
"eslint": "^8.28.0",
"eslint-plugin-mocha": "^10.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"mocha": "^10.1.0",
"nock": "^13.2.1",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1"
}
}