-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.82 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
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"clean": "rimraf _site",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"federalist": "npm run build",
"serve": "npm run build && npm run preview -- --port 8080",
"pa11y-ci": "npm run pa11y-ci:desktop && npm run pa11y-ci:mobile",
"pa11y-ci:desktop": "pa11y-ci --config ./.pa11yci-desktop --sitemap http://localhost:8080/sitemap-0.xml --sitemap-find \"^https://smartpay.gsa.gov/\" --sitemap-replace \"http://localhost:8080/\"",
"pa11y-ci:mobile": "pa11y-ci --config ./.pa11yci-mobile --sitemap http://localhost:8080/sitemap-0.xml --sitemap-find \"^https://smartpay.gsa.gov/\" --sitemap-replace \"http://localhost:8080/\"",
"pa11y-ci:gh": "npx start-server-and-test serve http://localhost:8080 pa11y-ci",
"link-checker:pipeline": "npx start-server-and-test serve http://localhost:8080 'npx linkinator http://localhost:8080/ --config linkinator-config.json'",
"lint": "eslint src --ext js,astro",
"link-checker": "npx linkinator http://localhost:4321/ --config linkinator-config.json"
},
"dependencies": {
"@astrojs/mdx": "^3.0.0",
"@astrojs/sitemap": "^3.1.4",
"astro": "^4.9.1",
"hast-util-select": "^5.0.5",
"marked": "^8.0.1",
"marked-smartypants": "^1.1.2",
"unist-util-visit": "^4.1.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@uswds/compile": "^1.1.0",
"@uswds/uswds": "^3.9.0",
"eslint": "^8.45.0",
"eslint-plugin-astro": "^0.27.2",
"gulp": "^4.0.2",
"linkinator": "^6.0.5",
"pa11y-ci": "^3.0.1",
"start-server-and-test": "^2.0.3"
},
"overrides": {
"glob-parent": "^5.1.2"
}
}