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 4
/
package.json
87 lines (87 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "covidbr-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env PARCEL_AUTOINSTALL=false parcel public/index.html",
"build": "cross-env NODE_ENV=production parcel build public/index.html --no-source-maps",
"linter": "eslint --fix src/**/*.ts src/**/*.tsx",
"test": "jest --verbose",
"test:coverage": "yarn test --coverage && jest-coverage-badges --output './badges'"
},
"husky": {
"hooks": {
"pre-commit": "yarn linter",
"pre-push": "yarn test:coverage"
}
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"apollo-boost": "^0.4.7",
"brazilian-values": "^0.7.4",
"chart.js": "^2.9.3",
"cross-env": "^7.0.2",
"fp-ts": "^2.5.3",
"graphql": "^14.6.0",
"leaflet": "^1.6.0",
"leaflet-providers": "^1.9.1",
"rambda": "^5.0.0",
"rc-queue-anim": "^1.8.4",
"react": "^16.13.1",
"react-chartjs-2": "^2.9.0",
"react-css-loaders": "^0.0.6",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-leaflet": "^2.6.3",
"react-loaders": "^3.0.1",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"react-swipeable": "^5.5.1",
"react-swipeable-views": "^0.13.9",
"react-use": "^13.27.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@apollo/react-testing": "^3.1.3",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/google-map-react": "^1.1.5",
"@types/jest": "^25.1.4",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-chartjs-2": "^2.5.7",
"@types/react-dom": "^16.9.0",
"@types/react-leaflet": "^2.5.1",
"@types/react-select": "^3.0.11",
"@types/react-swipeable-views": "^0.13.0",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"customize-cra": "^0.9.1",
"dotenv": "^8.2.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-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^25.2.4",
"jest-coverage-badges": "^1.1.2",
"mutationobserver-shim": "^0.3.5",
"parcel-bundler": "^1.12.4",
"ts-jest": "^25.3.0",
"typescript": "~3.7.2",
"waait": "^1.0.5"
},
"alias": {
"components": "./src/components",
"pages": "./src/pages",
"css": "./src/css",
"types": "./src/types",
"assets": "./src/assets"
}
}