-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"postinstall": "dotnet tool restore",
"build-fable": "dotnet fable src --runScript",
"build-md": "node ./scripts/build-md.js dev",
"build-css": "sass --style=compressed --no-source-map ./sass/style.scss ./docs/blog-fable/css/style.css",
"build-index": "pagefind",
"build": "npm run build-css && npm run build-fable && npm run build-index",
"build-dev": "npm run build-css && npm run build-fable dev && npm run build-index",
"serve": "dotnet fsi ./dev-server.fsx /blog-fable",
"dev": "npm run build-dev && npm run serve"
},
"version": "1.0.0",
"devDependencies": {
"bulma": "^1.0.3",
"pagefind": "^1.3.0",
"sass": "^1.84.0",
"ts2fable": "^0.7.1"
},
"dependencies": {
"highlight.js": "^11.11.1",
"marked": "^15.0.6",
"marked-footnote": "^1.2.4",
"marked-highlight": "^2.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"yaml": "^2.7.0"
}
}