-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
46 lines (46 loc) · 1.95 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
{
"name": "usds-website-v2",
"version": "2.0.2",
"description": "",
"main": "index.html",
"engines": {
"node": ">=18.11.0"
},
"scripts": {
"build": "npm run css && cross-env JEKYLL_ENV=production LC_CTYPE=UTF-8 bundle exec jekyll build",
"build-staging": "npm run css && cross-env JEKYLL_ENV=staging LC_CTYPE=UTF-8 bundle exec jekyll build",
"css": "npm run css:sass && npm run css:autoprefixer",
"css:sass": "sass assets/stylesheets/styles.scss assets/stylesheets/styles.css --update --style=compressed --embed-source-map --load-path='node_modules/@uswds/uswds/packages'",
"css:sass:watch": "sass assets/stylesheets:assets/stylesheets --watch --style=compressed --embed-source-map --load-path='node_modules/@uswds/uswds/packages'",
"css:autoprefixer": "npx postcss assets/stylesheets/styles.css --use autoprefixer -d assets/stylesheets",
"serve": "npm run css:sass:watch & cross-env LC_CTYPE=UTF-8 bundle exec jekyll serve --livereload",
"serve-all-hosts": "npm run css & cross-env LC_CTYPE=UTF-8 bundle exec jekyll serve --host 0.0.0.0 --livereload",
"start": "npm run serve",
"cypress:open": "npx cypress open --env type=base",
"visual-regression": "npx cypress run --browser chrome --env type=actual",
"visual-refresh": "cd cypress/e2e && ./sitemap.sh && cd ../.. && npx cypress run --browser chrome --env type=base"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usds/website.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/usds/website/issues"
},
"homepage": "https://github.com/usds/website#readme",
"devDependencies": {
"@uswds/uswds": "3.3.0",
"autoprefixer": "^10.2.4",
"axe-core": "^4.6.3",
"cross-env": "^7.0.3",
"cypress": "^12.17.4",
"cypress-axe": "^1.3.0",
"cypress-visual-regression": "^2.1.0",
"normalize.css": "^8.0.0",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"sass": "^1.69.5"
}
}