-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "@remy/remysharp.com",
"description": "Remy Sharp's b:log",
"main": "./lib/index.js",
"engines": {
"node": "18"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"dev": "nodemon -w lib/ lib/dev.js",
"update": "node lib/currently-reading.js",
"links": "node lib/links.js",
"version": "sh bin/hashit.sh",
"build": "npm run version; npm run links; node lib/index.js",
"build-only": "node lib/index.js"
},
"author": "Remy Sharp",
"license": "MIT",
"dependencies": {
"@remy/envy": "^4.0.2",
"approximate-number": "^2.1.0",
"buffer-crc32": "^0.2.13",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^2.30.0",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.0",
"gitlog": "^4.0.4",
"gray-matter": "^4.0.3",
"hash-files": "^1.1.1",
"less": "^4.1.3",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-attrs": "^4.1.6",
"markdown-it-prism": "^2.3.0",
"markdown-it-task-lists": "^2.1.1",
"node-fetch": "2.6.6",
"nodemon": "^3.1.2",
"num-words": "^1.2.3",
"prismjs": "^1.29.0",
"pug": "^3.0.2",
"recursive-copy": "^2.0.14",
"request": "^2.88.2",
"slugify": "^1.6.5",
"turndown": "^7.1.1",
"walkdir": "^0.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/remy/remysharp.com.git"
},
"type": "commonjs",
"devDependencies": {
"@types/node": "^18.14.6",
"browser-sync": "^2.28.2",
"chokidar": "^3.6.0",
"eslint-plugin-node": "^11.0.0",
"js-yaml": "^4.1.0",
"xml2json": "^0.12.0"
}
}