-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "nodejs-challenge",
"version": "1.0.0",
"description": "",
"private": true,
"main": "dist/index.js",
"author": "",
"license": "ISC",
"dependencies": {
"@typecli/framework": "^0.4.1",
"bull": "^3.5.2",
"inversify": "^5.0.1",
"ip": "^1.1.5",
"is-valid-domain": "0.0.6",
"koa": "^2.6.2",
"koa-router": "^7.4.0",
"ping": "^0.2.2",
"reflect-metadata": "^0.1.12",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"trafficlight": "^4.3.0",
"xml-js": "^1.6.8"
},
"devDependencies": {
"@types/bull": "^3.4.3",
"@types/ip": "0.0.32",
"@types/koa": "^2.0.47",
"@types/koa-router": "^7.0.35",
"@types/request": "^2.48.1",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-swimlane": "^3.0.4",
"typescript": "^3.2.1"
},
"scripts": {
"build": "npm-run-all -s build:*",
"build:clean": "rimraf dist",
"build:ts": "tsc",
"start": "node ./dist",
"start:dev": "ts-node ./src",
"lint": "tslint ./{src,tests}/{,**/,**/**/}*.ts"
}
}