forked from Skydipper/dataset
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 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
83
84
85
86
87
{
"name": "rw-dataset-microservice",
"version": "1.3.3",
"description": "Dataset Microservice",
"repository": "https://github.com/resource-watch/dataset",
"main": "index.js",
"scripts": {
"coverage": "nyc ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 20000 'test/**/*.js' --exit",
"test": "ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 20000 'test/**/*.js' --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",
"lint": "tslint --project tsconfig.json"
},
"lint-staged": {
"*.ts": [
"tslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"dataset",
"koa2",
"rw",
"nodejs"
],
"author": {
"name": "Vizzuality",
"email": "hello@vizzuality.com",
"url": "https://vizzuality.com/"
},
"engines": {
"node": "~20.4"
},
"license": "MIT",
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/config": "^0.0.37",
"@types/koa": "^2.11.6",
"@types/koa-logger": "^3.1.1",
"@types/mongoose": "^5.10.1",
"@types/sleep": "^0.0.8",
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"chai-http": "^4.3.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.0",
"ts-mocha": "^8.0.0",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@auth0/s3": "^1.0.0",
"bunyan": "^1.8.15",
"config": "^1.21.0",
"cron-parser": "^2.13.0",
"rw-api-microservice-node": "5.1.3",
"firstline": "^1.2.1",
"koa": "^2.0.0",
"koa-body": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-logger": "^2.0.0",
"koa-mount": "^2.0.0",
"koa-multer": "^1.0.1",
"koa-router": "^7.0.1",
"koa-simple-healthcheck": "^0.0.1",
"koa-validate": "^1.0.7",
"lodash": "^4.17.21",
"mongoose": "^5.9.15",
"mongoose-paginate": "^5.0.3",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"sleep": "^6.3.0",
"slug": "^0.9.1",
"uuid": "^3.0.1",
"typescript": "^4.1.2"
}
}