-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 KB
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
{
"name": "simple-coronavirus-graph",
"version": "0.0.1",
"description": "Simple visual graph of coronavirus in time",
"bugs": {
"url": "https://github.com/uid11/simple-coronavirus-graph/issues"
},
"homepage": "https://github.com/uid11/simple-coronavirus-graph#readme",
"main": "src/index.js",
"scripts": {
"lint": "eslint --max-warnings=0 --report-unused-disable-directives docs src",
"start": "node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"canvas",
"coronavirus",
"covid-19",
"graph"
],
"author": "uid11",
"license": "MIT",
"dependencies": {
"express": "4.19.2"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@typescript-eslint/parser": "7.10.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"prettier": "3.2.5",
"typescript": "5.4.5"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/uid11/simple-coronavirus-graph"
}
}