-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
{
"name": "@alex-mcgovern/simple-blog-generator",
"type": "module",
"scripts": {
"lint": "biome ci .",
"knip": "knip",
"format": "biome format --write .",
"check": "npm run lint && knip",
"dev": "concurrently -n BUILD,SERVE -c \"bgBlue.bold,bgGreen.bold\" \"npm:build-watch\" \"npm:serve\"",
"build": "rm -rf dist && tsx src/ts/build.ts",
"build-watch": "nodemon --watch ./src --ext html,hbs,css,md,ts,png,jpeg,jpg,svg --exec \"npm run build\"",
"serve": "http-server ./dist -c-1 --silent --port 3000",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/node": "20.14.0",
"concurrently": "8.2.2",
"gray-matter": "4.0.3",
"handlebars": "4.7.8",
"http-server": "14.1.1",
"husky": "9.0.11",
"knip": "5.17.4",
"nodemon": "3.1.2",
"reading-time": "1.5.0",
"rehype-pretty-code": "0.13.2",
"rehype-raw": "7.0.0",
"rehype-stringify": "10.0.0",
"remark-alerts": "0.0.1",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.0",
"shiki": "1.6.2",
"tsx": "4.11.2",
"unified": "11.0.4",
"zod": "3.23.8"
}
}