-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 KB
/
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
40
{
"name": "wealth-inequality-charts-2024",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"content": "node data/scripts/fetch_copy.js",
"update-charts": "Rscript data/scripts/update_charts.R",
"publish-charts": "Rscript data/scripts/publish_charts.R"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.2.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@vitest/ui": "^1.1.3",
"archieml": "^0.5.0",
"d3-dsv": "^3.0.1",
"node-fetch": "^3.3.2",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.0.0"
},
"dependencies": {
"@urbaninstitute/dataviz-components": "^0.7.1",
"pym.js": "^1.3.2"
}
}