-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.05 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
{
"name": "task-executor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"coverage": "nyc ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 30000 'test/**/*.ts' --exit",
"test": "ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 30000 'test/**/*.ts' --exit",
"start": "ts-node --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"run:cron": "ts-node --files --project tsconfig.json -r tsconfig-paths/register src/cronRunner.ts",
"watch": "ts-node-dev --respawn --transpile-only --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"build": "tsc --build",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "https://github.com/vizzuality",
"license": "MIT",
"engines": {
"node": "~20.4"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/config": "^3.3.0",
"@types/jsonapi-serializer": "^3.6.5",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"chai": "^4.3.8",
"chai-http": "^4.4.0",
"eslint": "^8.46.0",
"eslint-plugin-mocha": "^10.1.0",
"husky": "^8.0.0",
"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",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.5.0",
"bunyan": "^1.8.15",
"config": "^3.3.9",
"cron": "^2.4.3",
"rw-api-microservice-node": "^5.1.3",
"jsonapi-serializer": "^3.6.7",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^12.0.0",
"koa-simple-healthcheck": "^0.0.1",
"mongoose": "^7.5.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}