forked from act-now-coalition/covid-act-now-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.36 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "covid-projections",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"bluebird": "^3.7.2",
"csv-parse": "^4.8.8",
"d3": "^5.15.0",
"d3-fetch": "^1.1.2",
"d3-geo": "^1.11.9",
"d3-scale": "^3.2.1",
"downshift": "^5.0.5",
"googleapis": "^39.2.0",
"highcharts": "^8.0.4",
"highcharts-react-official": "^3.0.0",
"history": "^4.10.1",
"lint-staged": "^10.0.9",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"pageres": "^5.2.0",
"query-string": "^6.11.1",
"react": "^16.13.0",
"react-copy-to-clipboard": "^5.0.2",
"react-d3-library": "^1.1.8",
"react-d3-map-choropleth": "^0.5.1",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"react-lazyload": "^2.6.6",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-select": "^3.1.0",
"react-share": "^4.1.0",
"react-simple-maps": "^1.0.0-beta.0",
"react-tooltip": "^4.1.2",
"react-usa-map": "^1.4.0",
"sharp": "^0.25.2",
"styled-components": "^5.0.1",
"tar": "^6.0.1",
"topojson-client": "^3.1.0"
},
"scripts": {
"start": "cross-env TSC_COMPILE_ON_ERROR=false react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"serve": "react-scripts build && serve -s build",
"eject": "react-scripts eject",
"test": "start-server-and-test start http://localhost:3000 cy.open",
"test.ci": "CHOKIDAR_USEPOLLING=1 cross-env BROWSER=none start-server-and-test start http://localhost:3000 cy.run",
"cy.open": "cypress open",
"cy.run": "cypress run",
"lint": "eslint --ext .js,.ts,tsx src",
"lint-fix": "eslint --ext .js,.ts,tsx --fix src",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"prettier": "prettier --check '**/*.{css,scss,js,tsx}'",
"prettier-fix": "prettier --write '**/*.{css,scss,js,tsx}'"
},
"lint-staged": {
"src/**/*.{css,scss,js}": [
"eslint --fix src"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cypress/code-coverage": "^1.14.0",
"@cypress/instrument-cra": "^1.1.0",
"@types/d3-fetch": "^1.1.5",
"@types/d3-scale": "^2.2.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-helmet": "^5.0.15",
"@types/react-router": "^5.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-simple-maps": "^1.0.1",
"@types/react-tooltip": "^3.11.0",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"axios": "^0.19.2",
"cross-env": "^7.0.2",
"cypress": "^4.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-config-react-app": "^5.2.1",
"istanbul-lib-coverage": "^3.0.0",
"nyc": "^15.0.0",
"prettier": "2.0.2",
"start-server-and-test": "^1.10.11",
"typescript": "^3.8.3"
}
}