This repository has been archived by the owner on Apr 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.76 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
66
{
"name": "covidbr-api",
"version": "1.0.0",
"main": "src/index.ts",
"license": "",
"scripts": {
"dev": "cross-env NODE_ENV=dev nodemon src/index.ts",
"build": "tsc --build",
"start": "node build/index.js",
"lint": "eslint --fix src/**/*.ts __tests__/**/*.ts",
"test": "NODE_ENV=test jest --verbose"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cron": "1.7.2",
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.1.4",
"@types/jsdom": "16.1.0",
"@types/lokijs": "^1.5.3",
"@types/module-alias": "^2.0.0",
"@types/papaparse": "^5.0.3",
"@types/ramda": "^0.27.0",
"@types/uuid": "^7.0.2",
"@types/winston": "^2.4.4",
"@types/ws": "^7.2.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"nodemon": "^2.0.2",
"ts-jest": "^25.2.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"axios-mock-adapter": "^1.17.0",
"brazilian-geographic-data": "^1.0.0",
"cron": "^1.8.2",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"fp-ts": "^2.5.0",
"graphql-yoga": "^1.18.3",
"jest": "^25.2.3",
"jsdom": "^16.2.1",
"lokijs": "^1.5.8",
"module-alias": "^2.2.2",
"papaparse": "^5.1.1",
"ramda": "^0.27.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.6",
"uuid": "^7.0.2",
"winston": "^3.2.1"
}
}