-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 2.13 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
{
"name": "federalist-uswds-jekyll",
"version": "1.3.0",
"scripts": {
"federalist": "npm run build:js && npm run build:css && npm run build:media",
"build": "npm run webpack --progress bundle exec jekyll build",
"build:js": "webpack --config webpack.javascript.js",
"build:css": "webpack --config webpack.sass.js",
"build:media": "webpack --config webpack.media.js",
"clean": "bundle exec jekyll clean",
"lint:check": "prettier --check \"assets/js/**/*.js\"",
"lint:write": "prettier --write \"assets/js/**/*.js\"",
"start:js": "NODE_ENV=development webpack --config webpack.javascript.js --progress --watch",
"start:sass": "webpack --config webpack.sass.js --progress --watch",
"start:media": "webpack --config webpack.media.js --progress --watch",
"start": "npm run start:sass & npm run start:js & npm run start:sass & npm run start:media & bundle exec jekyll serve --livereload --trace --config _config.yml,_config.dev.yml",
"test:a11y-desktop": "pa11y-ci --config ./.pa11yci-desktop --sitemap http://127.0.0.1:4000/sitemap.xml",
"test:a11y-mobile": "pa11y-ci --config ./.pa11yci-mobile --sitemap http://127.0.0.1:4000/sitemap.xml",
"test:ui": "npm run start:js & bundle exec jekyll serve --detach && playwright test"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.18.6",
"@octokit/core": "^4.2.0",
"@uswds/uswds": "3.0.2",
"anchor-js": "^4.3.1",
"babel-loader": "^8.2.3",
"core-js": "^3.21.1",
"css-to-style": "^1.4.0",
"gumshoejs": "^5.1.2",
"liquidjs": "^10.7.0",
"markdown-it": "^13.0.1",
"pa11y-ci": "^3.0.1",
"puppeteer": "^19.11.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@playwright/test": "^1.29.1",
"autoprefixer": "^10.4.16",
"babel-jest": "^28.0.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"gray-matter": "^4.0.3",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^2.5.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.2"
}
}