-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.12 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
{
"name": "widget-v3-server",
"version": "1.0.0",
"description": "Server for seniverse widget v3",
"main": "index.js",
"scripts": {
"lint": "tslint --project .",
"build": "echo Using TypeScript && tsc --version && tsc -p ./tsconfig.pro.json --pretty",
"start-dev": "cross-env DEBUG=horizon* cross-env nodemon",
"test": "mocha -r ts-node/register ./test/**/*.test.ts --exit",
"init": "npm run build && node dist/scripts/init.js",
"weather-permission": "npm run build && node dist/scripts/weather.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cache-manager": "^1.2.6",
"@types/chai": "^4.1.7",
"@types/deepmerge": "^2.2.0",
"@types/hapi__joi": "^15.0.2",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.0.33",
"@types/koa__cors": "^2.2.3",
"@types/log4js": "^2.3.5",
"@types/mobile-detect": "^1.3.4",
"@types/mocha": "^5.2.6",
"@types/moment-timezone": "^0.5.12",
"@types/mongodb": "^3.1.28",
"@types/node": "^10.12.7",
"@types/node-statsd": "^0.1.2",
"@types/object-merge": "^2.5.0",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^2.0.7",
"@types/useragent": "^2.1.1",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.6",
"supertest": "^4.0.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"@koa/cors": "^2.2.2",
"cache-manager": "^2.9.0",
"deepmerge": "^4.0.0",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"log4js": "^3.0.6",
"mobile-detect": "^1.4.3",
"moment": "^2.22.2",
"moment-timezone": "^0.5.25",
"mongodb": "^3.2.7",
"node-statsd": "^0.1.1",
"object-merge": "^2.5.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"useragent": "^2.3.0",
"uuid": "^3.3.2"
}
}