-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 994 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
{
"license": "MIT",
"scripts": {
"start": "rm -rf dist/build && cd app && hax11ty serve",
"preinstall": "cd src/custom && yarn install && cd ../..",
"clean-up-pre": "rm -rf dist/build",
"clean-up-post": "rm dist/assets/styles.css && cp src/styles.css dist/assets/styles.css && rm -rf dist/custom && cp -R src/custom dist/custom",
"build": "yarn run clean-up-pre && cd src/custom && yarn run build && cd ../../app && env HAXCMS_CDN=true env HAXCMS_SERVICE_WORKER=true env HAXCMS_GITHUB=true hax11ty build && yarn run clean-up-post",
"local-build": "yarn run clean-up-pre && cd src/custom && yarn run build && cd ../../app && env HAXCMS_CONTEXT=haxcms hax11ty build && yarn run clean-up-post"
},
"devDependencies": {
"@haxcms/11ty": "0.0.13",
"@11ty/eleventy-plugin-rss": "1.0.7",
"eleventy-xml-plugin": "0.1.0",
"crypto": "1.0.1",
"gray-matter": "4.0.2",
"fs-extra": "8.1.0"
},
"dependencies": {
"es-module-shims": "^0.4.6"
}
}