forked from Stadt-Geschichte-Basel/stadtgeschichtebasel.ch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.62 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
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
{
"name": "stadtgeschichtebasel.ch",
"description": "The open source code of the digital portal of Stadt.Geschichte.Basel.",
"author": {
"name": "Moritz Mähr",
"email": "[email protected]",
"url": "https://github.com/maehr"
},
"contributors": [
{
"name": "Moritz Twente",
"email": "[email protected]",
"url": "https://github.com/mtwente"
},
{
"name": "Nico Görlich",
"email": "[email protected]",
"url": "https://github.com/koilebeit"
}
],
"version": "0.0.1",
"url": "https://github.com/Stadt-Geschichte-Basel/stadtgeschichtebasel.ch/issues",
"license": "AGPL-3.0",
"engines": {
"node": ">=20 <23",
"pnpm": ">=9"
},
"private": true,
"packageManager": "[email protected]",
"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": "playwright test",
"test:unit": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"commit": "cz",
"prepare": "svelte-kit sync && husky install",
"prebuild": "node ./src/lib/downloadPostsPagesAssets.mjs",
"postbuild": "jampack ./build",
"clean": "rm -Rf static/files/* && touch static/files/.gitkeep && rm -Rf src/pages/* && touch src/pages/.gitkeep && rm -Rf src/posts/* && touch src/posts/.gitkeep"
},
"devDependencies": {
"@divriots/jampack": "^0.30.1",
"@playwright/test": "^1.49.0",
"@skeletonlabs/skeleton": "^2.10.3",
"@skeletonlabs/tw-plugin": "^0.4.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"cheerio": "1.0.0",
"dompurify": "^3.2.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.1",
"mdsvex": "^0.12.3",
"node-fetch": "^3.3.2",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"remark-captions": "^2.2.4",
"svelte": "^4.2.19",
"svelte-check": "^4.1.1",
"svelte-maplibre": "^0.9.14",
"tailwindcss": "^3.4.16",
"turndown": "^7.2.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-tailwind-purgecss": "^0.3.5",
"vitest": "^2.1.8",
"xml2js": "^0.6.2"
},
"type": "module"
}