-
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.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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": "cotwit19",
"version": "0.0.1",
"description": "tweet austrian covid19 graphs",
"main": "build/index.js",
"author": "Christian Junker",
"license": "MIT",
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/jsdom": "^16.2.1",
"@types/node": "^13.11.1",
"@types/node-fetch": "^2.5.6",
"@types/yauzl": "^2.9.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^23.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-watch": "^6.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"ts-essentials": "^6.0.4",
"typescript": "^3.8.3"
},
"dependencies": {
"convert-svg-to-png": "^0.5.0",
"d3": "^5.15.1",
"jsdom": "^16.2.2",
"node-fetch": "^2.6.1",
"twitter-lite": "^0.10.1-0",
"yauzl": "^2.10.0"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx --ignore-pattern '**/build/' --ignore-pattern '**/node_modules/'",
"lint:watch": "esw -w . --ext .ts,.tsx --ignore-pattern '**/build/' --ignore-pattern '**/node_modules/'",
"compile": "tsc",
"compile:watch": "tsc -w",
"build": "npm-run-all lint compile",
"build:watch": "npm-run-all -p lint:watch compile:watch bundle:watch",
"run": "./run.sh",
"start": "npm-run-all build run"
}
}