-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "healthnewsapi",
"version": "1.0.0",
"description": "A server to control the acess to database of Sala de Situcao",
"main": "dist/main.js",
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json",
"prebuild": "yarn run lint",
"build": "tsc",
"build:watch": "tsc -w",
"prestart": "yarn run build",
"start": "node .",
"test": "ts-node jest.startup.ts"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"pre-push": "yarn run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/healthnewsapi/HealthNewsAPI"
},
"keywords": [
"db",
"database",
"nodejs",
"server",
"elasticsearch"
],
"author": "Joao Victor Rodrigues da Silva <victor.joao.1611@gmail.com>",
"contributors": [
"Hudson dos Santos <hudson.alves@live.com>",
"Ingrid Lorraine Rodrigues da Silva <ingridsilva71@gmail.com>",
"Joao Victor Rodrigues da Silva <victor.joao.1611@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/healthnewsapi/HealthNewsAPI/issues"
},
"homepage": "https://github.com/healthnewsapi/HealthNewsAPI#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/restify": "^7.2.11",
"@types/restify-cors-middleware": "^1.0.1",
"@types/supertest": "^2.0.7",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@elastic/elasticsearch": "^7.1.0",
"restify": "^8.3.2",
"restify-cors-middleware": "^1.1.1"
}
}