-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "bristolfurs-eleventy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"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 install"
},
"author": "beeps <[email protected]>",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-img": "^3.1.8",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"date-fns": "^2.30.0",
"eleventy-plugin-svg-contents": "^0.7.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"postcss": "^8.4.21",
"postcss-preset-env": "^8.0.1",
"prettier": "2.8.4",
"sass": "^1.58.3"
},
"lint-staged": {
"*.{js,json,md,mjs,scss,yaml,yml}": "prettier --write"
},
"dependencies": {
"eleventy-plugin-toc": "^1.1.5"
}
}