-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "vathub",
"version": "0.2.0",
"description": "All VATSIM data in one place",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"start": "forever start ./dist/index.js",
"prod": "npm run build && npm run start"
},
"author": "garrappachc@gmail.com",
"license": "GPL-3.0-or-later",
"dependencies": {
"async": "^3.0.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"forever": "^1.0.0",
"geolib": "^3.0.4",
"kd-tree-javascript": "^1.0.3",
"moment": "^2.24.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/async": "^3.0.0",
"@types/chai": "^4.1.7",
"@types/chai-arrays": "^1.0.2",
"@types/chai-datetime": "0.0.33",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"chai": "^4.2.0",
"chai-arrays": "^2.0.0",
"chai-datetime": "^1.5.0",
"mocha": "^6.1.3",
"nodemon": "^2.0.0",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.0.0-pre.32",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
}