-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "mephi.dev",
"version": "1.0.0",
"description": "Sam Bulatov blog",
"scripts": {
"clear": "rimraf dist",
"start": "npm run clear && eleventy --serve --port=9876",
"build": "npm run clear && eleventy",
"debug": "npm run clear && DEBUG=Eleventy* eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mephistorine/mephi.dev.git"
},
"keywords": [
"eleventy"
],
"author": {
"name": "Sam Bulatov",
"email": "[email protected]",
"url": "https://mephi.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mephistorine/mephi.dev/issues"
},
"homepage": "https://github.com/mephistorine/mephi.dev#readme",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@gerhobbelt/markdown-it-footnote": "^3.0.2-4",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.3.0",
"markdown-it-attrs": "^4.0.0",
"markdown-it-table-of-contents": "^0.5.2",
"toml": "^3.0.0"
},
"dependencies": {
"rimraf": "^3.0.2"
}
}