-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
38 lines (38 loc) · 1.42 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
{
"name": "cg-site",
"version": "1.3.0",
"scripts": {
"start": "bundle install && run-p watch:* watch:static:*",
"watch:jekyll": "bundle exec jekyll serve",
"watch:static:js": "npx copy-and-watch --watch _assets/js/* assets/js",
"watch:static:docs": "parcel watch --no-hmr _assets/documents/* --dist-dir assets/documents",
"watch:css": "parcel watch --no-hmr _assets/css/styles.scss --dist-dir assets/css",
"watch:images": "parcel watch --no-hmr _assets/images/**/* --dist-dir assets/images/",
"build": "run-s prod:parcel jekyll",
"jekyll": "bundle exec jekyll build JEKYLL_ENV=production",
"prod:parcel": "run-p build:* build:static:*",
"build:static:js": "npx copy-and-watch _assets/js/* assets/js",
"build:static:docs": "parcel build _assets/documents/* --dist-dir assets/documents",
"build:css": "parcel build _assets/css/styles.scss --dist-dir assets/css",
"build:images": "parcel build _assets/images/**/* --dist-dir assets/images/",
"link-checker": "sh scripts/run-lychee-local.sh",
"pages": "npm run prod:parcel"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"anchor-js": "^4.3.0",
"uswds": "^2.13.3"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"copy-and-watch": "^0.1.6",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.3"
},
"browserList": [
"last 2 versions",
"> 2%",
"IE 11",
"not dead"
]
}