-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "api-ingest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tslint --project . && tsc",
"watch": "nodemon --watch src -e ts,tsx --exec node index.js",
"start": "NODE_PATH=./dist node --max-http-header-size 20000 dist/index.js",
"test": "tslint --project ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/logging-winston": "^4.2.2",
"@google-cloud/storage": "^5.18.2",
"@hapi/joi": "^16.1.7",
"@koa/cors": "^2.2.3",
"@types/joi": "^14.3.4",
"@types/koa": "^2.0.51",
"@types/koa__cors": "^2.2.3",
"@types/koa-helmet": "^3.1.2",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.0.42",
"auth-middleware": "https://github.com/GlobalFishingWatch/auth-middleware.git#develop",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-helmet": "^5.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.6.4",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "^2.0.15",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"object-curly-newline": [
"error",
{
"multiline": true
}
]
}
}