-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 886 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
{
"name": "@eymengunay/covid-19",
"version": "0.1.0",
"description": "A simple static interface for visualizing personal covid-19 related events.",
"scripts": {
"start": "npm run serve",
"build": "parcel build src/index.html",
"watch": "parcel watch src/index.html",
"serve": "parcel serve src/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Eymen Gunay <[email protected]>",
"license": "ISC",
"dependencies": {
"chart.xkcd": "^1.1.13",
"csv-parse": "^4.15.3",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-moment": "^1.1.1",
"react-qr-code": "^2.0.2"
},
"devDependencies": {
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0"
},
"staticFiles": {
"staticPath": [
"data.json"
]
}
}