-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "bristolfurs-eleventy",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"clean": "rm -rf _site",
"start": "DEBUG=Eleventy* npm run clean && npm run build-development -- --serve",
"build-development": "ENVIRONMENT=development npx @11ty/eleventy",
"build-production": "ENVIRONMENT=production npx @11ty/eleventy",
"lint": "prettier --write \"**/*.{js,json,md,mjs,scss,yaml,yml}\"",
"prepare": "husky"
},
"author": "beeps <[email protected]>",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"date-fns": "^4.1.0",
"eleventy-plugin-svg-contents": "^0.7.0",
"eleventy-plugin-toc": "^1.1.5",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"postcss": "^8.4.49",
"postcss-preset-env": "^10.1.3",
"prettier": "3.4.2",
"sass": "1.83.1"
},
"lint-staged": {
"*.{js,json,md,mjs,scss,yaml,yml}": "prettier --write"
}
}