-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.89 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.89 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "hackncheese.com",
"version": "2.0.0",
"description": "Repository for the Hack N Cheese blog web site using the Eleventy static site generator.",
"author": "Sylvain Emery",
"license": "Unlicense",
"scripts": {
"start": "npx @11ty/eleventy --serve",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --dryrun",
"build": "npx @11ty/eleventy",
"servebuild": "npx @11ty/eleventy && npx serve ./_site/",
"clean": "rm -rf ./_site",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint": "eslint '**/*.js' --no-error-on-unmatched-pattern",
"format": "prettier --write '**/*.{js,css,html,md,json}'",
"fix": "eslint --fix '**/*.js' --no-error-on-unmatched-pattern && prettier --write '**/*.{js,css,html,md,json}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sylvainemery/hackncheese.com.git"
},
"bugs": {
"url": "https://github.com/sylvainemery/hackncheese.com/issues"
},
"homepage": "https://github.com/sylvainemery/hackncheese.com#readme",
"dependencies": {
"@11ty/eleventy": "2.0.0-canary.23",
"@11ty/eleventy-img": "^3.1.8",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"autoprefixer": "^10.4.13",
"critical": "^5.0.4",
"eleventy-plugin-youtube-embed": "^1.7.1",
"html-minifier": "^4.0.0",
"luxon": "^3.2.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"postcss": "^8.4.31",
"postcss-csso": "^6.0.1",
"postcss-import": "^15.1.0"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "2.8.2"
},
"lint-staged": {
"*.js": "eslint",
"**/*": "prettier --write --ignore-unknown"
}
}