-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.92 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
88
89
90
91
92
93
94
95
{
"name": "covid-calculator",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/react": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"@testing-library/dom": ">=5",
"@types/react-bootstrap-typeahead": "^5.1.2",
"bootstrap": "^4.5.0",
"copy-to-clipboard": "^3.3.1",
"focus-visible": "^5.2.0",
"i18n-iso-countries": "^6.4.0",
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.0.20",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"markdown-it": "^11.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-github-headings": "^2.0.0",
"markdown-it-link-attributes": "^3.0.0",
"num2fraction": "^1.2.2",
"popper.js": "^1.16.1",
"query-string": "^6.13.5",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-bootstrap-typeahead": "^5.1.4",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-helmet-async": "^1.0.6",
"react-i18next": "^11.7.2",
"react-icons": "^3.11.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0-next.64",
"rfs": "^9.0.3",
"sass": "^1.35.1",
"use-query-params": "^1.1.8"
},
"scripts": {
"start": "REACT_APP_DEPLOY_PRIME_URL=\"$DEPLOY_PRIME_URL\" react-scripts start",
"build": "REACT_APP_DEPLOY_PRIME_URL=\"$DEPLOY_PRIME_URL\" react-scripts build",
"test": "react-scripts test",
"coverage": "react-scripts test --coverage --watchAll=false",
"lint": "black *.py --diff && eslint src && prettier --check src/locales/en.json *.json",
"fix": "eslint src --fix && prettier --write src/locales/en.json *.json && black *.py",
"typecheck": "tsc",
"prevalence": "./scripts/prevalence_helper.sh"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.159",
"@types/markdown-it": "^10.0.2",
"@types/node": "^12.12.53",
"@types/num2fraction": "^1.2.0",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/testing-library__jest-dom": "^5.9.5",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"prettier": "^2.0.5",
"prettier-plugin-sort-json": "*",
"typescript": "^3.8.3"
},
"peerDependencies": {
"prop-types": "^15.6.0"
},
"jest": {
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/node_modules/**"
]
}
}