-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "gleam",
"version": "0.0.1",
"description": "Server side for Gleam - melanoma detection app",
"main": "dist/index.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint-fix": "tslint --fix -c tslint.json 'src/**/*.ts'",
"build": "tsc",
"migrate": "NODE_PATH=. node_modules/.bin/ts-node node_modules/.bin/typeorm migration:run",
"start": "node dist/awaitDatabase.js && npm run migrate && node dist/index.js",
"watch": "tsc -w",
"watch-run": "nodemon -w dist dist/index.js",
"watch-test": "NODE_PATH=. ava --watch --no-cache tests",
"test": "NODE_PATH=. ava tests"
},
"author": "Dmitry Nikulin",
"dependencies": {
"@types/async-retry": "^1.2.1",
"@types/express": "^4.16.0",
"@types/geolib": "^2.0.23",
"@types/js-yaml": "^3.11.2",
"@types/lodash": "^4.14.118",
"@types/node": "^10.12.4",
"@types/pg": "^7.4.11",
"async-retry": "^1.2.3",
"body-parser": "^1.18.3",
"class-validator": "^0.9.1",
"express": "^4.16.4",
"geolib": "^2.0.24",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.2.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"pg": "^7.6.1",
"reflect-metadata": "^0.1.12",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"typeorm": "^0.2.8",
"typescript": "^3.1.6",
"winston": "^3.1.0"
},
"devDependencies": {
"ava": "^1.0.0-rc.1",
"nodemon": "^1.18.6",
"tslint": "^5.11.0"
},
"ava": {
"cache": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"failFast": true,
"require": [
"ts-node/register"
]
},
"private": true
}