-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.9 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "outbreaktinder",
"version": "0.2.0",
"private": false,
"license": "MIT",
"description": "Tinder-style swipe deck of historic disease outbreaks for public health education.",
"keywords": [
"epidemiology",
"public-health",
"education",
"outbreak",
"pandemic",
"pwa",
"astro",
"typescript"
],
"homepage": "https://outbreaktinder.pages.dev",
"repository": {
"type": "git",
"url": "https://github.com/ByteWorthyLLC/outbreaktinder.git"
},
"bugs": {
"url": "https://github.com/ByteWorthyLLC/outbreaktinder/issues"
},
"author": "Kevin Richards <Richardskef@gmail.com>",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"lint": "eslint . && prettier --check . && stylelint \"**/*.css\" --allow-empty-input",
"lint:fix": "eslint . --fix && prettier --write . && stylelint \"**/*.css\" --fix --allow-empty-input",
"typecheck": "astro check && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:a11y": "playwright test --project=a11y",
"content-lint": "node --experimental-strip-types scripts/content-lint.ts",
"citation-check": "node --experimental-strip-types scripts/citation-check.ts",
"dataset-diff": "node --experimental-strip-types scripts/dataset-diff.ts",
"prepare": "husky"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@astrojs/preact": "^5.1.4",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/instrument-serif": "^5.2.8",
"@preact/signals": "^2.9.1",
"@use-gesture/vanilla": "^10.3.1",
"@vite-pwa/astro": "^1.2.0",
"astro": "^6.4.2",
"pdf-lib": "1.17.1",
"popmotion": "^11.0.5",
"preact": "^10.29.2",
"satori": "^0.26.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@axe-core/playwright": "^4.11.3",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@resvg/resvg-js": "^2.6.2",
"@size-limit/file": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"lost-pixel": "^3.22.0",
"prettier": "^3.8.3",
"size-limit": "^12.1.0",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
},
"overrides": {
"form-data": "^4.0.4",
"axios": "^1.15.0",
"serialize-javascript": "^7.0.5",
"minimatch@<3.1.4": "^3.1.4",
"esbuild@<0.25.0": "^0.25.0",
"yaml": "^2.8.3"
}
}