-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
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": "aging-coder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm --prefix cv run build:prod && eleventy",
"build:blog": "eleventy",
"serve": "eleventy --serve --port=8888 --incremental",
"dev": "concurrently -n blog,api -c blue,green \"cross-env CV_CHAT_API=http://127.0.0.1:8787 eleventy --serve --port=8888 --incremental\" \"npm --prefix api-worker run dev\"",
"clean": "rm -Rf ./_site/*",
"draft": "node js/create-post.js",
"publish": "node js/publish-draft.js",
"rag-embeddings-reset": "node scripts/reset-rag-embeddings.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"dotenv": "^16.4.5",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"inquirer": "^13.0.1",
"jsdom": "^27.4.0",
"liquidjs": "^10.21.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-katex": "^2.0.3",
"nunjucks-date": "^1.5.0",
"slugify": "^1.6.6",
"vitest": "^4.0.18"
}
}