-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.12 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.12 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
{
"name": "ndx-try-aws-scenarios",
"version": "1.0.0",
"description": "NDX:Try AWS Scenarios Portal - Zero-cost evaluation platform for UK local government",
"type": "module",
"scripts": {
"start": "eleventy --serve",
"build": "npm run validate:schema && eleventy",
"validate:schema": "node scripts/validate-schema.js",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:watch": "vitest",
"test:a11y": "pa11y-ci",
"test:a11y:full": "node scripts/run-accessibility-tests.js",
"test:lighthouse": "lhci autorun",
"test:screenshots": "playwright test tests/screenshot-capture.spec.ts",
"test:visual": "playwright test tests/visual-regression.spec.ts",
"test:drupal-screenshots": "playwright test tests/drupal-screenshots.spec.ts",
"test:playwright": "playwright test",
"clean": "rm -rf _site",
"optimize-images": "node scripts/optimize-images.js",
"check:screenshots": "node scripts/check-screenshots.js"
},
"keywords": [
"govuk",
"eleventy",
"aws",
"local-government",
"uk-councils"
],
"author": "NDX Partnership",
"license": "MIT",
"dependencies": {
"@sindresorhus/slugify": "^3.0.0",
"@x-govuk/govuk-eleventy-plugin": "^8.3.1",
"govuk-frontend": "6.0.0",
"jspdf": "^4.2.0",
"markdown-it": "^14.1.1"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@aws-sdk/client-cloudformation": "^3.985.0",
"@aws-sdk/client-cloudwatch": "^3.985.0",
"@aws-sdk/client-dynamodb": "^3.985.0",
"@aws-sdk/client-lambda": "^3.985.0",
"@aws-sdk/client-s3": "^3.985.0",
"@aws-sdk/client-sns": "^3.985.0",
"@aws-sdk/client-sts": "^3.985.0",
"@axe-core/playwright": "^4.11.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.58.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.13.5",
"http-server": "^14.1.1",
"js-yaml": "^4.1.0",
"pa11y-ci": "^4.0.1",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=20.0.0"
}
}