28 lines
848 B
JSON
28 lines
848 B
JSON
{
|
|
"name": "blog",
|
|
"version": "1.0.0",
|
|
"description": "A static blog generator",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "concurrently --kill-others -n Build,Serve -c auto \"npm run watch-build\" \"npm run serve\"",
|
|
"watch-build": "nodemon --watch notes --watch src --watch markdown.ts --exec \"npm run build && npm run generate-blog\"",
|
|
"build": "tsc -p tsconfig.json",
|
|
"serve": "serve dist",
|
|
"generate-blog": "node bin/index.js",
|
|
"initialize-firebase": "npm install -g firebase-tools && firebase login"
|
|
},
|
|
"workspaces": [
|
|
"packages/@zblog/toolchain"
|
|
],
|
|
"author": "Wholteza (Zackarias Montell)",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.5",
|
|
"concurrently": "^8.2.1",
|
|
"nodemon": "^3.0.1",
|
|
"serve": "^14.2.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|