-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 860 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"scripts": {
"dev": "concurrently \"npm run assets:serve\" \"npm run jekyll:serve\"",
"build": "npm run assets:build && npm run jekyll:build",
"assets:serve": "gulp updateUswds && gulp watch",
"assets:build": "gulp updateUswds && gulp compile",
"jekyll:serve": "bundle exec jekyll serve --source ./src",
"jekyll:build": "bundle exec jekyll build --source ./src",
"pa11y": "pa11y-ci --config pa11yci.local.json --sitemap http://localhost:4000/sitemap.xml --sitemap-exclude /*.pdf",
"unlighthouse": "npx unlighthouse --site http://localhost:4000",
"gulp": "gulp",
"update:npm": "npx taze",
"update:gems": "bundle update"
},
"dependencies": {
"@uswds/compile": "^1.3.1",
"@uswds/uswds": "^3.13.0",
"concurrently": "^9.2.1",
"gulp": "^5.0.1",
"pa11y-ci": "^4.1.0",
"taze": "19.8.1"
}
}