forked from census-coil/coil-site
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 2.28 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
{
"name": "coil-site",
"private": true,
"homepage": "",
"bugs": {
"url": "https://github.com/uscensusbureau/the-opportunity-project/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "COIL",
"contributors": [
"Sadie <[email protected]>",
"Sam Potasznik <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uscensusbureau/the-opportunity-project"
},
"scripts": {
"cypress": "npx cypress open",
"html-proofer": "htmlproofer --allow_hash_href --assume_extension --only_4xx ./_site",
"html-proofer:skip-external": "htmlproofer --allow_hash_href --assume_extension --disable_external ./_site",
"federalist-old": "npm install && ./build.sh && npm run uswds-copy-assets && npm run uswds-build-sass",
"federalist": "npm run uswds-copy-assets && npm run uswds-build-sass",
"jekyll-install": "gem install bundler && bundle install",
"pa11y-ci": "pa11y-ci --config pa11y.json",
"pa11y-ci:sitemap": "pa11y-ci --sitemap http://localhost:4000/sitemap.xml --sitemap-exclude \"/*.pdf\"",
"serve": "bundle exec jekyll serve --drafts --future --incremental --livereload --config _config.yml,_config_dev.yml",
"start": "bundle exec jekyll serve",
"setup": "npm install && npm update uswds && npm run jekyll-install && npm run uswds-copy-assets && npm run uswds-build-sass",
"uswds-build-sass": "gulp build-sass",
"uswds-build-app": "gulp build-app",
"uswds-copy-assets": "npm run uswds-copy-js && npm run uswds-copy-fonts && npm run uswds-copy-img",
"uswds-copy-fonts": "gulp copy-uswds-fonts",
"uswds-copy-img": "gulp copy-uswds-images",
"uswds-copy-js": "gulp copy-uswds-js",
"uswds-update": "npm update uswds && ./build.sh",
"watch": "gulp watch"
},
"dependencies": {
"autoprefixer": "^10.3.1",
"gulp": "^4.0.2",
"gulp-notify": "^3.2.0",
"gulp-postcss": "^9.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-watch": "^5.0.1",
"sass": "^1.37.2",
"uswds": "^2.13.3"
},
"devDependencies": {
"gulp-rename": "^2.0.0",
"gulp-svg-sprite": "^1.5.0",
"pa11y-ci": "^2.4.2",
"postcss": "^8.3.6",
"postcss-csso": "^5.0.1",
"standard": "^16.0.3"
}
}