-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.5 KB
/
package.json
File metadata and controls
75 lines (75 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
{
"name": "sveltekit-accessibility-testing",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "SvelteKit Accessibility Testing: see how you can use Playwright to run automated axe accessibility & htmlcs tests in your Svelte CI workflow.",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check",
"check:watch": "svelte-check --watch",
"lint": "prettier --check --plugin=prettier-plugin-svelte . && eslint --ignore-path .gitignore .",
"lint:scss": "stylelint \"src/**/*.{css,scss,svelte}\"",
"format": "prettier --write --plugin=prettier-plugin-svelte .",
"generate:images": "node ./generate-responsive-image-data.js",
"prettier:check": "prettier --check --plugin=prettier-plugin-svelte .",
"prepare": "husky install",
"test:a11y": "pa11y-ci --sitemap 'http://localhost:5173/sitemap.xml' --sitemap-find 'https://example.com' --sitemap-replace 'http://localhost:5173'",
"test": "playwright test"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.1.0",
"@fontsource/lato": "^5.0.17",
"@fontsource/lora": "^5.0.8",
"@fontsource/source-sans-pro": "^5.0.8",
"@iconify/svelte": "^3.1.4",
"@playwright/test": "^1.39.0",
"@rodneylab/sveltekit-components": "^3.0.0",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.27.4",
"@types/object-hash": "^3.0.6",
"commitlint": "^18.2.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte3": "link:latest@commitlint/config-conventional@latest",
"front-matter": "^4.0.2",
"husky": "^8.0.3",
"mdsvex": "^0.11.0",
"object-hash": "^3.0.0",
"pa11y": "^6.2.3",
"pa11y-ci": "^3.0.1",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"prettier": "~3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"puppeteer": "^9.1.1",
"reading-time": "1.4.0",
"sass": "^1.69.5",
"sharp": "~0.32.6",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.3.1",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"svelte-preprocess": "^5.0.4",
"vanilla-lazyload": "^17.8.5",
"vite": "^4.5.0",
"vite-imagetools": "^6.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-accessibility-testing"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-accessibility-testing/issues"
},
"type": "module",
"peerDependencies": {
"puppeteer": "9"
}
}