-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "warming-navigator",
"version": "0.0.0",
"description": "Browse through temperature anomalies of certain regions and years.",
"repository": "github:IMAGINARY/warming-navigator",
"homepage": "https://imaginary.github.io/warming-navigator/",
"author": "Christian Stussak <christian.stussak@imaginary.org>",
"license": " Apache-2.0",
"engines": {
"node": ">=24.1.0"
},
"devDependencies": {
"d3-dsv": "^2.0.0",
"d3-time-format": "^3.0.0",
"oxlint": "^1.15.0",
"postcss-nesting": "^13.0.2",
"prettier": "^3.6.2",
"vite": "^7.1.5"
},
"dependencies": {
"@fontsource/share-tech-mono": "^4.5.9",
"color": "^3.1.3",
"document-ready": "^2.0.2",
"es-toolkit": "^1.39.10",
"events": "^3.3.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"data": "node ./src/js/data-generator/main.js ./src/json/config-europe-ext.json > ./public/data/europe-ext.json",
"format": "prettier --write .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix ."
}
}