-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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": "med_price_anvisa",
"main": "build/index.js",
"types": "build/index.d.ts",
"version": "1.0.3",
"description": "Esse repositório é responsável por disponibilizar em forma de JSON/API Rest a base de medicamentos registrados na anvisa assim como seu preço respectivo no mercado.",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest --coverage --verbose --detectOpenHandles --no-cache ",
"dev": "DEBUG=API:* ts-node-dev --respawn --rs --transpile-only --ignore-watch node_modules --no-notify src/server.ts",
"start": "ts-node src/server.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/node": "^14.14.22",
"@types/puppeteer": "^5.4.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"eslint-plugin-jest": "^24.1.3",
"esm": "^3.2.25",
"express": "^4.17.1",
"mongodb": "^3.6.3",
"mongoose": "^5.11.13",
"redoc-express": "^1.0.0",
"swagger-ui-express": "^4.1.6",
"tsc": "^1.20150623.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/csvtojson": "^1.1.5",
"@types/express": "^4.17.11",
"@types/highland": "^2.12.11",
"@types/jest": "^26.0.20",
"@types/mongodb": "^3.6.3",
"@types/mongoose": "^5.10.3",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"helmet": "^4.4.1",
"jest": "^26.6.3",
"node-cache": "^5.1.2",
"supertest": "^6.1.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}