forked from GSA/digitalgov.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
{
"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",
"prettier:templates": "npx prettier -w ./themes/**/*.html",
"test:templates": "npx prettier -c ./themes/**/*.html",
"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.4.1",
"autoprefixer": "^10.4.14",
"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.1.4",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprite": "2.0.3",
"gulp-uglify": "^3.0.2",
"jquery": "^3.6.4",
"jshint": "^2.13.6",
"npm-run-all": "^4.1.5",
"postcss-csso": "^5.0.1",
"sass": "^1.60.0",
"sass-embedded": "^1.60.0"
},
"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.32.2",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-go-template": "^0.0.13",
"vinyl-paths": "^3.0.1"
},
"overrides": {
"gulp-responsive": {
"sharp": "0.31.3"
}
}
}