-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "monitor-service",
"version": "1.0.0",
"description": "Test project for Applifting",
"main": "app.js",
"author": {
"name": "Jakub Vacek",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Jakub-Vacek/MonitorService.git"
},
"scripts": {
"test": "jest",
"prebuild": "eslint --ext .ts 'src'",
"lint": "eslint --ext .ts 'src'",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/app.js",
"format": "prettier --check \"**/*.js\""
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@types/restify": "8.4.0",
"@types/restify-errors": "^4.3.3",
"jest": "^25.2.4",
"prettier": "^2.0.5",
"ts-jest": "^25.3.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.8.3",
"eslint": "7.4.0",
"eslint-plugin-eslint-plugin": "2.3.0",
"@typescript-eslint/eslint-plugin": "3.6.0",
"@typescript-eslint/parser": "3.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4"
},
"dependencies": {
"axios": "^0.19.2",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.0-rc.0",
"inversify": "^5.0.1",
"inversify-restify-utils": "^3.4.0",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"restify": "8.4.0",
"restify-errors": "^8.0.2",
"typeorm": "^0.2.24",
"winston": "^3.2.1"
}
}