-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "covid19-growth-dashboard",
"version": "0.0.1",
"description": "COVID-19 growth dashboard with multiple data sources",
"main": "index.js",
"scripts": {
"test": "tsc --project tsconfig.json --noEmit && prettier --check \"src/**/*\"",
"dev": "parcel src/index.html",
"build": "(bash -c 'rm -rf $(pwd)/docs/*.{js,css,html,map}') && parcel build --out-dir docs src/index.html",
"fix": "prettier --write \"src/**/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayrbolton/covid19-growth-dashboard.git"
},
"keywords": [
"COVID-19",
"dashboard",
"frontend",
"app"
],
"author": "Jay R Bolton <jayrbolton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jayrbolton/covid19-growth-dashboard/issues"
},
"homepage": "https://github.com/jayrbolton/covid19-growth-dashboard#readme",
"dependencies": {
"chart.js": "2.9.3",
"classnames": "2.2.6",
"csv-parse": "4.8.8",
"history": "4.10.1",
"preact": "10.3.4"
},
"devDependencies": {
"@types/history": "^4.7.5",
"parcel-bundler": "^1.12.4",
"tachyons": "^4.11.1",
"typescript": "^3.8.3",
"prettier": "^2.0.5"
}
}