This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 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
64
65
{
"name": "open-medical-screening",
"version": "0.0.39",
"description": "Search for diseases and symptoms based on the health website of the government of brazil",
"main": "dist/index.js",
"repositoryUrl": "https://github.com/JJS4ntos/open-medical-screening",
"scripts": {
"build": "tsc",
"start": "nodemon --watch 'src/' --exec 'ts-node src/index.ts' -e ts",
"test": "jest"
},
"nodemonConfig": {
"ignore": [
"disease_cached.json",
"trained.json"
]
},
"author": "JJS4ntos",
"license": "MIT",
"dependencies": {
"core-js": "^3.6.5",
"esm": "^3.2.25",
"lodash": "^4.17.20",
"nodemon": "^2.0.7",
"ora": "^5.1.0",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.2.3",
"x-ray": "^2.3.4"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^26.0.21",
"@types/lodash": "^4.14.168",
"@types/x-ray": "^2.3.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "2.1.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/JJS4ntos/open-sus.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}