-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 992 Bytes
/
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
{
"name": "covid19-dashboard",
"version": "1.0.0",
"description": "Dashboard for tracking COVID-19 cases ",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --https --no-cache -p 3000",
"test": "./node_modules/.bin/cypress open",
"build": "parcel build src/index.js --no-cache --public-url '.' -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfDetroit/COVID19-dashboard.git"
},
"keywords": [
"coronavirus",
"covid-19",
"dashboard",
"tracker"
],
"author": "Edgar Montes",
"license": "MIT",
"bugs": {
"url": "https://github.com/CityOfDetroit/COVID19-dashboard/issues"
},
"homepage": "https://github.com/CityOfDetroit/COVID19-dashboard#readme",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"cssnano": "^4.1.10",
"cypress": "^4.2.0",
"sass": "^1.26.3"
}
}