forked from GSA/digitalgov.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "digitalgov.gov",
"version": "2.0.0",
"description": "Guidance for making a better digital government",
"main": "gulpfile.js",
"scripts": {
"federalist": "export NODE_ENV=production && gulp buildAssets",
"hugo": "export $(grep -v '^#' .env | xargs) && hugo serve --bind='0.0.0.0'",
"lint:json": "find public/**/v1/json/index.html -print0 | xargs -0I {} jsonlint '{}'",
"lint:markdown": "markdownlint --config ./.markdown-lint.yml ./content/**/*.md --ignore './content/apis/*.md'",
"lint:markdown:format": "markdownlint --fix --config ./.markdown-lint.yml ./content/**/*.md --ignore './content/apis/*.md'",
"local-build": "gulp buildAssets && gulp watch",
"start": "npm-run-all --parallel local-build hugo workflow",
"test:htmlproofer": "htmlproofer ./public --allow-hash-href --check-html --empty-alt-ignore --disable-external",
"test:pa11y": "npx pa11y-ci --config .pa11yci",
"workflow": "npx netlify-cms-proxy-server"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSA/digitalgov.gov.git"
},
"license": "",
"dependencies": {
"@uswds/uswds": "^3.0.2",
"autoprefixer": "^10.4.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-dart-scss": "^1.1.0",
"gulp-jshint": "^2.1.0",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprite": "^1.5.0",
"gulp-uglify": "^3.0.2",
"jquery": "^3.5.1",
"jshint": "^2.13.4",
"npm-run-all": "^4.1.5",
"postcss-csso": "^5.0.1",
"sass": "^1.44.0",
"sass-embedded": "^1.50.1"
},
"devDependencies": {
"del": "^3.0.0",
"dotenv": "^8.2.0",
"gulp-rename": "^2.0.0",
"gulp-responsive": "^3.0.1",
"gulp-s3-upload": "^1.7.3",
"gulp-size": "^3.0.0",
"gulp-strip-css-comments": "^2.0.0",
"gulp-tap": "^2.0.0",
"image-size": "^0.8.3",
"jsonlint": "^1.6.3",
"markdownlint-cli": "^0.31.1",
"postcss": "^8.4.12",
"vinyl-paths": "^3.0.1"
}
}