-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.71 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
62
63
64
{
"private": true,
"type": "module",
"name": "website-from-github-wiki",
"version": "0.0.0",
"description": "Website generated from a GitHub wiki",
"scripts": {
"wiki": "./scripts/get-wiki-files.sh",
"prestart": "npm run wiki",
"predev": "npm run wiki",
"start": "eleventy --config='.eleventy.config.cjs'",
"dev": "eleventy --config='.eleventy.config.cjs' --serve",
"test": "npm run lint",
"lint": "eslint lib/**/*.cjs lib/**/*.js .eleventy.config.cjs && prettier --check lib/**/*.cjs lib/**/*.js .eleventy.config.cjs"
},
"dependencies": {
"@11ty/eleventy": "^2.0.0-canary.16",
"@11ty/eleventy-utils": "^1.0.1",
"date-fns": "^2.29.3",
"deepmerge": "^4.2.2",
"eleventy-plugin-unified": "^1.0.0",
"hast-util-from-html": "^1.0.0",
"rehype-format": "^4.0.1",
"remark-breaks": "^3.0.2",
"remark-emoji": "^3.0.2",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-github": "^11.2.4",
"remark-slug": "^7.0.1",
"remark-smartypants": "^2.0.0",
"remark-wiki-link": "^1.0.4",
"unist-util-visit": "^4.1.1"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"node/no-unsupported-features/es-syntax": "off"
},
"parserOptions": {
"ecmaVersion": 2022
},
"ignorePatterns": [
"!.eleventy.config.cjs"
]
}
}