-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
150 lines (150 loc) · 5 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "berliner-schnauze",
"type": "module",
"version": "3.14.2",
"homepage": "https://berliner-schnauze.wtf",
"repository": {
"type": "git",
"url": "https://github.com/felix-berlin/berliner-schnauze"
},
"bugs": {
"url": "https://github.com/felix-berlin/berliner-schnauze/issues"
},
"author": {
"name": "Felix Scholze",
"email": "[email protected]",
"url": "https://webshaped.de"
},
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/felix-berlin"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/felixberlin"
},
{
"type": "PayPal",
"url": "https://paypal.me/FelixScholze"
},
{
"type": "Buy me a coffee",
"url": "https://www.buymeacoffee.com/felixberlin"
}
],
"scripts": {
"dev": "pnpm run supportedBrowsers && astro dev",
"start": "pnpm run supportedBrowsers && astro dev",
"build": "pnpm run supportedBrowsers && astro build",
"build:strict": "astro check && tsc --noEmit && vue-tsc --noEmit && astro build",
"preview": "astro preview",
"astro": "astro",
"typechecking": "astro check && tsc --noEmit && vue-tsc --noEmit",
"lint:js": "eslint src/ --ignore-pattern 'src/tests/*'",
"lint:style": "stylelint \"**/*.{scss,sass}\" --ignore-path .gitignore",
"lint": "pnpm run lint:js && pnpm run lint:style",
"test:unit": "vitest run --coverage",
"test:unit:ui": "vitest --coverage --ui",
"test:ci": "vitest --coverage --reporter=junit",
"vitest:update": "vitest --update",
"format": "npx prettier --write .",
"gql:generate": "gql-gen --config codegen.ts",
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 public/favicons/favicon.svg",
"browserslist:update": "npx update-browserslist-db@latest",
"predev": "pnpm run gql:generate",
"preinstall": "npx only-allow pnpm",
"postbuild": "pagefind --site dist/",
"server:pages": "npx wrangler pages dev ./dist",
"supportedBrowsers": "echo \"export default $(browserslist-useragent-regexp --allowHigherVersions);\" > src/utils/supportedBrowsers.mjs"
},
"packageManager": "[email protected]",
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@codecov/astro-plugin": "1.8.0",
"@eslint/js": "^9.19.0",
"@graphql-codegen/cli": "^5.0.4",
"@graphql-codegen/client-preset": "^4.6.1",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.1.3",
"@graphql-codegen/typescript-operations": "^4.4.1",
"@nanostores/logger": "^0.4.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.0.2",
"@semantic-release/git": "^10.0.1",
"@sentry/browser": "^8.53.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.0",
"@vite-pwa/assets-generator": "^0.2.6",
"@vite-pwa/astro": "^0.5.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "3.0.5",
"@vitest/ui": "3.0.5",
"@vitest/web-worker": "3.0.5",
"@vue/compiler-sfc": "^3.5.13",
"@vue/devtools-api": "^7.7.1",
"@vue/test-utils": "^2.4.6",
"astro-eslint-parser": "^1.2.1",
"autoprefixer": "^10.4.20",
"browserslist-useragent-regexp": "^4.1.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"graphql-config": "^5.1.3",
"jsdom": "^26.0.0",
"postcss-html": "^1.8.0",
"postcss-preset-env": "^10.1.3",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"sass": "1.84.0",
"semantic-release": "^24.2.1",
"sinon": "^19.0.2",
"stylelint": "^16.14.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^37.0.0",
"typescript-eslint": "^8.22.0",
"unplugin-icons": "^22.0.0",
"vite": "^6.0.11",
"vitest": "3.0.5",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.0",
"wrangler": "^3.107.2"
},
"dependencies": {
"@astrojs/partytown": "^2.1.3",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/vue": "^5.0.6",
"@felix_berlin/sass-butler": "3.1.0",
"@iconify-json/lucide": "^1.2.25",
"@nanostores/persistent": "^0.10.2",
"@nanostores/vue": "^0.11.0",
"@pagefind/default-ui": "^1.3.0",
"@sentry/astro": "^8.53.0",
"@sentry/vite-plugin": "^3.1.1",
"@sentry/vue": "^8.53.0",
"@spotlightjs/astro": "^2.4.3",
"@vueuse/core": "^12.5.0",
"astro": "^5.2.3",
"astro-breadcrumbs": "^3.3.1",
"astro-matomo": "^1.8.0",
"compromise": "^14.14.4",
"de-compromise": "^0.0.10",
"floating-vue": "5.2.2",
"fuse.js": "^7.0.0",
"hyphenation.de": "^0.2.1",
"hypher": "^0.2.5",
"nanostores": "^0.11.3",
"natural": "^8.0.1",
"pagefind": "^1.3.0",
"photoswipe": "^5.4.4",
"typescript": "^5.7.3",
"vanilla-cookieconsent": "3.0.1",
"virtua": "^0.40.0",
"vue": "^3.5.13"
}
}