-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "thomas-broadley-rss",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"@types/globby": "^9.1.0",
"@types/lodash": "^4.14.157",
"@types/mustache": "^4.0.1",
"@types/node": "^14.0.13",
"@types/rss": "^0.0.28",
"@types/yaml": "^1.9.7",
"fp-ts": "^2.8.3",
"globby": "^11.0.1",
"io-ts": "^2.2.10",
"lodash": "^4.17.21",
"mustache": "^4.0.1",
"rehype-raw": "^4.0.2",
"rehype-stringify": "^8.0.0",
"remark-parse": "^8.0.3",
"remark-rehype": "^7.0.0",
"rss": "^1.2.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"unified": "^9.2.0",
"yaml": "^1.10.0"
},
"scripts": {
"new-post": "ts-node src/create-post.ts",
"serve": "http-server docs",
"build": "ts-node src/build.ts && yarn build:pagefind && pretty-quick",
"build:pagefind": "rm -rf docs/pagefind && pagefind --source docs --bundle-dir pagefind --force-language en",
"watch": "git ls-files -cdmo --exclude-standard | grep --invert-match \"^docs/\" | entr -dc yarn build",
"convert-png-to-jpg": "mogrify -format jpg blog/**/*.png"
},
"devDependencies": {
"http-server": "^0.12.3",
"husky": "^4.2.5",
"pagefind": "^0.8.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}