-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.12 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.12 KB
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
{
"name": "disckeeperfour",
"version": "1.0.0",
"description": "As much re-tooling as re-coding",
"main": ".eleventy.js",
"scripts": {
"watch:critical": "sass --style compressed --no-source-map --watch src/sass/critical.scss:src/critical/critical.css",
"watch:eleventy": "rm -rf dist && npx @11ty/eleventy --serve",
"serve": "npm-run-all --parallel watch:eleventy watch:critical",
"serviceworker:create": "node src/_eleventy/utilities/service-worker-create.js",
"serviceworker:min": "terser disckeeper-service-worker.js -o disckeeper-service-worker-min.js",
"build:start": "rm -rf dist && ELEVENTY_RUN_MODE=build npx @11ty/eleventy",
"build": "run-s serviceworker:create serviceworker:min build:start"
},
"keywords": [
"disc golf",
"disc golf scoring",
"disc golf score keeping"
],
"author": "robin@moosedog.io",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"eleventy-plugin-rev": "^2.0.0",
"eleventy-sass": "^2.2.4",
"html-minifier": "^4.0.0",
"luxon": "^3.4.4",
"npm-run-all": "^4.1.5",
"sass": "^1.70.0",
"terser": "^5.27.0"
}
}