blog/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2024-06-11 23:57:32 +00:00
{
"name": "@adaedra/blog",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@mapbox/rehype-prism": "^0.9.0",
"asciidoctor": "^3.0.4",
2024-06-27 02:58:26 +00:00
"chokidar": "^3.6.0",
2024-06-11 23:57:32 +00:00
"cssnano": "^7.0.2",
"glob": "^10.4.2",
2024-06-11 23:57:32 +00:00
"luxon": "^3.4.4",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.5",
"preact": "^10.22.0",
"preact-render-to-string": "^6.5.5",
2024-06-11 23:57:32 +00:00
"rehype": "^13.0.1",
"rehype-external-links": "^3.0.0",
"rehype-preset-minify": "^7.0.0",
2024-06-26 02:21:31 +00:00
"rxjs": "^7.8.1",
2024-06-11 23:57:32 +00:00
"tmp": "^0.2.3",
"ts-node": "^10.9.2",
2024-06-27 03:20:18 +00:00
"unified": "^11.0.4",
"vinyl": "^3.0.0"
2024-06-11 23:57:32 +00:00
},
"devDependencies": {
"@types/glob": "^8.1.0",
2024-06-11 23:57:32 +00:00
"@types/luxon": "^3.4.2",
"@types/tmp": "^0.2.6",
"@types/vinyl": "^2.0.12",
2024-06-11 23:57:32 +00:00
"prettier": "^3.3.1"
},
"scripts": {
2024-06-27 03:20:18 +00:00
"build": "node --import ./lib/ts-loader.js ./bin/build.ts",
"watch": "node --import ./lib/ts-loader.js ./bin/watch.ts",
2024-06-11 23:57:32 +00:00
"dev": "python -m http.server -d dist"
}
}