-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.51 KB
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
{
"name": "scangov-site",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "npx @11ty/eleventy --quiet",
"build-nocolor": "cross-env NODE_DISABLE_COLORS=1 npx @11ty/eleventy",
"build-ghpages": "npx @11ty/eleventy --pathprefix=/scangov/",
"start": "npx @11ty/eleventy --serve --quiet",
"start-ghpages": "npx @11ty/eleventy --pathprefix=/scangov/ --serve --quiet",
"deploy:test": "aws s3 cp _site s3://test.scangov.org/ --recursive",
"write:grades": "node scripts/gradesummary.js",
"upload:grades": "aws s3 cp scripts/output/domains.csv s3://audits.scangov.org/aggregate/domains.csv",
"deploy:grades": "npm run write:grades && npm run upload:grades",
"test:manual": "npx http-server _site",
"debug": "cross-env DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "cross-env DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"cross-env": "^7.0.3",
"csv-parse": "^5.6.0",
"follow-redirects": "^1.15.6",
"luxon": "^3.5.0",
"readline-sync": "^1.4.10",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.1"
},
"dependencies": {
"@11ty/font-awesome": "github:aaronhans/eleventy-plugin-font-awesome",
"@11ty/is-land": "^4.0.0",
"leaflet": "^1.9.4",
"purgecss": "^7.0.2"
},
"overrides": {
"sharp": "^0.35.3",
"brace-expansion": "^1.1.18",
"postcss": "^8.5.25"
}
}