This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
101 lines (101 loc) · 3.09 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "covid19",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "gulp build",
"build:11ty": "npx @11ty/eleventy",
"build:staging": "cross-env NODE_ENV=staging npm run build",
"build:css": "gulp css",
"build:site": "gulp eleventy",
"build:js": "gulp rollup",
"debug:11ty": "DEBUG=Eleventy* npx @11ty/eleventy",
"deploy": "gulp deploy",
"deploy:redirects": "node src/redirects/fromTable.js",
"clean": "gulp clean",
"compress:img": "cd src/build && node img.js",
"dev": "cross-env NODE_ENV=development npm run start",
"devserver": "web-dev-server --root-dir docs/",
"local": "npm run watch",
"local:dev": "cross-env NODE_ENV=development npm run watch",
"serve": "npx @11ty/eleventy --serve --quiet",
"start": "npm run watch",
"testdata": "tap test/11ty-data.js",
"test": "npx playwright test index.spec.mjs",
"test:setup": "npx playwright install-deps chromium && npx playwright install",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cagov/covid19.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cagov/covid19/issues"
},
"homepage": "https://github.com/cagov/covid19#readme",
"dependencies": {
"@cagov/anchor-events": "^1.0.0",
"@cagov/ds-accordion": "^2.0.3",
"@cagov/go-to-top": "^1.0.8",
"@cagov/lookup": "^1.0.3",
"@cagov/pagerating": "^2.0.0",
"@cagov/step-list": "^1.0.11",
"@webcomponents/webcomponentsjs": "^2.8.0",
"awesomplete": "^1.1.5",
"awesomplete-es6": "^1.2.2",
"aws-sdk": "^2.1479.0",
"element-closest-polyfill": "^1.0.6",
"jest": "^29.6.2",
"throttle-debounce": "^5.0.0",
"url-search-params-polyfill": "^8.1.0",
"whatwg-fetch": "^3.6.19"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.22.9",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@playwright/test": "^1.39.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@web/dev-server": "^0.2.5",
"acorn": ">=8.10.0",
"axe-playwright": "^1.2.3",
"browser-sync": "^2.29.3",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"css-purge": "^3.1.8",
"cssnano": "^6.0.1",
"del": "^6.1.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"install": "^0.13.0",
"linkedom": "^0.14.25",
"md5": "^2.3.0",
"node-fetch": "^2.6.9",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss-url": "^10.1.3",
"promise-timeout": "^1.3.0",
"proxyquire": "^2.1.3",
"puppeteer": "^21.0.0",
"query-string": "^8.1.0",
"rollup": "^3.29.4",
"rollup-plugin-postcss": "^4.0.2",
"sinon": "^17.0.0",
"tap": "^18.5.2",
"tape": "^5.6.3"
}
}