-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.5 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.5 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
{
"name": "eventua11y",
"version": "1.0.0",
"description": "A curated list of digital accessibility events",
"main": "index.astro",
"scripts": {
"test": "npx playwright test",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:ui": "npx playwright test --ui",
"dev": "concurrently \"astro dev\" \"npm run check:watch\"",
"start": "astro dev",
"build": "npm run check && astro build && npm run sentry:sourcemaps",
"preview": "astro preview",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org matt-obee --project eventua11y ./dist && sentry-cli sourcemaps upload --org matt-obee --project eventua11y ./dist",
"check": "prettier --check .",
"check:watch": "concurrently \"prettier --watch . --write\" \"eslint . --fix --watch\"",
"format": "prettier --write .",
"lint": "eslint . --fix",
"check:freshness": "node scripts/check-event-freshness.mjs --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eventua11y/eventua11y.com.git"
},
"author": "Matt Obee",
"license": "MIT",
"bugs": {
"url": "https://github.com/eventua11y/eventua11y.com/issues"
},
"homepage": "https://github.com/eventua11y/eventua11y.com#readme",
"resolutions": {
"astro": "^5.16.5"
},
"overrides": {
"vue": "^3.5.25",
"@vue/compiler-sfc": "^3.5.25",
"@vue/compiler-core": "^3.5.25",
"@vue/compiler-dom": "^3.5.25"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.0",
"@vitest/coverage-v8": "^4.0.18",
"astro": "^5.18.0",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"cssnano": "^7.1.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-playwright": "^2.9.0",
"eslint-plugin-vue": "^10.5.1",
"globals": "^17.4.0",
"netlify-cli": "^24.0.1",
"playwright-chromium": "^1.57.0",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.49.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@astrojs/netlify": "^6.6.3",
"@astrojs/vue": "^5.1.3",
"@awesome.me/webawesome": "^3.3.1",
"@portabletext/toolkit": "^5.0.1",
"@sanity/client": "^7.16.0",
"@sentry/astro": "^10.30.0",
"@sentry/cli": "^3.2.1",
"astro-portabletext": "^0.13.0",
"dayjs": "^1.11.13",
"vue": "^3.5.25"
}
}