-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "pack11ty",
"version": "2.2.0",
"title": "Pack11ty",
"description": "an heavily opinionated Eleventy template project",
"homepage": "https://pack11ty.dev/",
"author": {
"name": "Nicolas Hoizey",
"url": "https://nicolas-hoizey.com/",
"email": "[email protected]"
},
"keywords": [
"eleventy",
"starter",
"template",
"eleventy-website",
"eleventy-sample"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nhoizey/pack11ty.git"
},
"bugs": {
"url": "https://github.com/nhoizey/pack11ty/issues"
},
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rimraf _site",
"build:eleventy": "eleventy",
"watch:eleventy": "eleventy --serve",
"serviceworker:injectmanifest": "workbox injectManifest workbox.config.cjs",
"serviceworker:bundle": "node build-service-worker.js",
"build:serviceworker": "npm-run-all --sequential serviceworker:injectmanifest serviceworker:bundle",
"start": "npm-run-all --sequential clean watch:eleventy",
"start:debug": "DEBUG=Eleventy* npm start",
"build": "npm-run-all --sequential clean build:eleventy build:serviceworker",
"build:debug": "DEBUG=Eleventy* npm run build",
"lint": "npx @biomejs/biome check --write"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@biomejs/biome": "^1.9.4",
"@jlengstorf/get-share-image": "^1.0.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eleventy-plugin-pack11ty": "^2.0.1",
"esbuild": "^0.24.0",
"image-size": "^1.1.1",
"lodash-es": "^4.17.21",
"modern-css-reset": "^1.4.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"sanitize-html": "^2.13.1",
"workbox-cli": "^7.3.0",
"workbox-recipes": "^7.1.0"
},
"dependencies": {
"toastify-js": "^1.12.0"
}
}