This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.01 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "web",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build --logLevel info",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"link:ui": "ln -sf ./build _site",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"federalist": "npm run build && npm run link:ui && ls -al ./_site/",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test": "vitest run",
"test:coverage": "vitest run --coverage && open ./coverage/index.html",
"test:watch": "vitest watch"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@sveltejs/adapter-static": "^1.0.0-next.38",
"@sveltejs/kit": "1.0.0-next.403",
"@types/cookie": "^0.5.1",
"@types/d3": "^7.4.0",
"@types/d3-sankey": "^0.11.2",
"@types/make-fetch-happen": "^10.0.0",
"@types/memoizee": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"autoprefixer": "^10.4.8",
"c8": "^7.12.0",
"cssnano": "^5.1.12",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"jsdom": "^20.0.0",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-load-config": "^4.0.1",
"postcss-url": "^10.1.3",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.54.2",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-preprocess": "^4.10.7",
"typescript": "^4.7.4",
"vite": "^3.0.4",
"vitest": "^0.20.3",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"d3": "^7.6.1",
"d3-sankey": "^0.12.3",
"fp-ts": "^2.12.2",
"io-ts": "^2.2.17",
"io-ts-reporters": "^2.0.1",
"make-fetch-happen": "^10.2.0",
"memoizee": "^0.4.15",
"uswds": "^2.13.3"
}
}