-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.79 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
{
"name": "radinfra-de",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "npm run dev",
"build": "astro build",
"build:local": "ASTRO_OUTPUT_MODE=static astro build",
"preview:local": "ASTRO_OUTPUT_MODE=static astro preview",
"astro": "astro",
"generate-types": "astro sync --verbose && cat ./.astro/astro/content.d.ts",
"type-check": "astro check && tsc --skipLibCheck --noEmit",
"lint": "eslint",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|astro)\" --write",
"check": "npm run type-check && npm run format && npm run lint",
"campaigns:create": "bun run --env-file=scripts/maproulette/.env scripts/maproulette/process.ts",
"updatePackages:major": "npx taze major --includeLocked --write --exclude eslint && 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"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/netlify": "^5.5.4",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/ts-plugin": "^1.10.4",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.5",
"@keystatic/astro": "^5.0.3",
"@keystatic/core": "^0.5.39",
"@nanostores/react": "^0.8.0",
"@nanostores/router": "^0.16.1",
"@total-typescript/ts-reset": "^0.6.1",
"@turf/turf": "^7.1.0",
"@types/geojson": "^7946.0.14",
"astro": "^4.16.8",
"astro-heroicons": "^2.1.5-1",
"date-fns": "^4.1.0",
"maplibre-gl": "^4.7.1",
"nanostores": "^0.11.3",
"pmtiles": "^3.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-map-gl": "7.2.0-beta.1",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tiny-invariant": "^1.3.3",
"typescript": "^5.6.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8"
}
}