-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.62 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.62 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
{
"name": "gibbs.github.io",
"version": "7.0.0",
"type": "module",
"keywords": [],
"description": "Dan Gibbs website",
"author": "Dan Gibbs <dev@dangibbs.co.uk>",
"license": "MIT",
"engines": {
"node": "^24"
},
"repository": {
"type": "git",
"url": "git@github.com:gibbs/gibbs.github.io.git"
},
"bugs": "https://github.com/gibbs/gibbs.github.io/issues",
"scripts": {
"postinstall": "patch-package",
"dev": "npm run build:worker && astro dev",
"build": "npm run build:worker && astro build",
"build:testing": "dotenv -e .env.testing -- npm run build:worker && dotenv -e .env.testing -- astro build",
"build:worker": "vite build --mode ${VITE_MODE:-production}",
"lint": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"lint:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"lint:css": "stylelint src/styles/**/*.css",
"lint:css:fix": "stylelint src/styles/**/*.css --fix",
"preview": "astro preview",
"preview:testing": "dotenv -e .env.testing -- astro preview",
"slicemachine": "start-slicemachine",
"test:e2e": "playwright test",
"test:unit": "vitest"
},
"dependencies": {
"@alpinejs/csp": "^3.14.9",
"@alpinejs/intersect": "^3.15.4",
"@astrojs/ts-plugin": "^1.10.4",
"@astropub/md": "^1.0.0",
"@meilisearch/instant-meilisearch": "^0.30.0",
"@prismicio/client": "^7.17.2",
"@rehype-pretty/transformers": "^0.13.2",
"@sentry/astro": "^10.46.0",
"@types/alpinejs": "^3.13.11",
"astro": "^5.7.0",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"jiti": "^2.6.1",
"luxon": "^3.7.2",
"meilisearch": "^0.55.0",
"normalize.css": "^8.0.1",
"rehype-pretty-code": "^0.14.1",
"sharp-ico": "^0.1.5"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@csstools/postcss-global-data": "^3.0.0",
"@playwright/test": "^1.49.1",
"@richhouse83/xsd-validator": "^1.0.0",
"@types/dotenv": "^6.1.1",
"@types/luxon": "^3.7.1",
"@types/node": "^25.3.0",
"@types/svg-sprite": "^0.0.39",
"@typescript-eslint/parser": "^8.31.1",
"dotenv-cli": "^7.4.2",
"eslint": "^9.25.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"happy-dom": "^20.6.1",
"html-validate": "^10.7.0",
"install": "^0.13.0",
"patch-package": "^8.0.1",
"postcss": "^8.5.4",
"postcss-custom-media": "^11.0.6",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"remark-flexible-markers": "^1.3.2",
"stylelint": "^16.20.0",
"stylelint-config-standard": "^38.0.0",
"svg-sprite": "^2.0.4",
"vitest": "^3.1.2"
}
}