forked from wearefuturegov/gov-uk-eleventy-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 913 Bytes
/
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
{
"name": "govuk-eleventy",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm-run-all --parallel -r dev:*",
"build": "npm-run-all prod:*",
"dev:parcel:scripts": "parcel watch javascript --dist-dir _site/js",
"dev:parcel:styles": "parcel watch styles --dist-dir _site/styles",
"dev:11ty": "eleventy --serve --input=pages --output=_site",
"prod:parcel:scripts": "parcel build javascript/index.js --dist-dir _site/js",
"prod:parcel:styles": "parcel build styles/style.scss --dist-dir _site/styles",
"prod:11ty": "ELEVENTY_ENV=production eleventy --input=pages"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@parcel/transformer-sass": "^2.8.0",
"@scottish-government/pattern-library": "^0.0.318",
"govuk-frontend": "^4.4.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.0"
}
}