forked from FixMyBerlin/nudafa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.84 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.84 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
{
"name": "@keystatic/templates-astro",
"version": "0.0.2",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "npm run dev",
"build": "astro build",
"build:local": "ASTRO_OUTPUT_MODE=static astro build",
"preview": "ASTRO_OUTPUT_MODE=static astro preview --open",
"astro": "astro",
"generate-types": "astro sync --verbose --force && npm run generate-types:highlightError",
"generate-types:highlightError": "echo -e '\\033[47;30mSHOW TYPES `any`\\033[0m' && cat ./.astro/content.d.ts | grep -B 1 ': any'",
"generate-types:full": "astro sync --verbose && npm run generate-types:highlightError && echo -e '\\033[47;30mSHOW FULL GENERATED TYPE FILE\\033[0m' && cat ./.astro/content.d.ts",
"type-check": "astro check && tsc --skipLibCheck --noEmit",
"lint": "eslint '{src,keystatic}/**/*.+(ts|js|tsx|astro)' --fix",
"format": "prettier --ignore-path .gitignore '{src,keystatic}/**/*.+(ts|js|tsx|astro)' --write",
"format:all": "prettier --ignore-path .gitignore '{src,keystatic}/**/*.+(ts|js|tsx|astro|mdx)' --write",
"check": "npm run type-check && npm run format && npm run lint",
"updatePackages:major": "npx taze major --includeLocked --write --exclude /react/ && npm run updatePackages:minor && npm install",
"updatePackages:minor": "npx taze minor --includeLocked --write && npm install",
"bleach": "rm -rf node_modules/.astro && rm -rf node_modules/.bin && rm -rf node_modules/.vite && rm -rf .astro/ && rm -rf .netlify/ && rm -rf dist/ && npm install && npm run bleach:info",
"bleach:info": "echo \"\u001b[43m\u001b[30m(!) Also delete the browser cache, see https://github.com/vitejs/vite/discussions/17738#discussioncomment-10158746\u001b[0m\"",
"bleach:all": "rm -rf node_modules/ && npm run bleach",
"bleach:full": "rm package-lock.json && npm run bleach:all",
"prepare": "husky",
"transformMeasuresCsvToMdx": "node scripts/csvToJson.js ./data/measures/massnahmenliste.csv ./data/measures/massnahmenliste.json && node scripts/measureJsonToMdx.js && npm run format:all"
},
"browserslist": [
"defaults",
"last 2 IE major versions",
"last 4 Edge major versions"
],
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.8",
"@astrojs/netlify": "^6.2.0",
"@astrojs/react": "^4.2.0",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.5",
"@astrojs/ts-plugin": "^1.10.4",
"@fontsource-variable/open-sans": "^5.1.1",
"@fontsource/roboto-slab": "^5.1.1",
"@headlessui/react": "^2.2.0",
"@headlessui/tailwindcss": "^0.2.2",
"@heroicons/react": "^2.2.0",
"@keystatic/astro": "^5.0.5",
"@keystatic/core": "^0.5.45",
"@nanostores/react": "^0.8.4",
"@nanostores/router": "^0.16.1",
"@turf/turf": "^7.2.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"astro": "^5.3.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"heroicons-astro": "^1.0.4",
"maplibre-gl": "^4.7.1",
"micromark": "^4.0.1",
"nanostores": "^0.11.4",
"nuqs": "^2.4.0",
"papaparse": "^5.5.2",
"pmtiles": "^4.2.1",
"react": "^18.3.1",
"react-aria-components": "^1.6.0",
"react-dom": "^18.3.1",
"react-map-gl": "^7.2.0-beta.1",
"react-stately": "^3.35.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.13.4",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^9.20.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"prettier": "^3.5.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-astro-organize-imports": "^0.4.11",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11"
}
}