docs first attempt

This commit is contained in:
raiper34
2024-09-01 17:21:49 +02:00
parent c365d8be90
commit 2a01e7e09a
18 changed files with 25540 additions and 16 deletions
+13 -2
View File
@@ -1,13 +1,24 @@
{
"name": "spooty",
"workspaces": ["src/backend", "src/frontend"],
"workspaces": [
"src/backend",
"src/frontend"
],
"scripts": {
"start:be": "npm run start:dev -w backend",
"start:fe": "npm run start -w frontend",
"build:be": "npm run build -w backend",
"build:fe": "npm run build -w frontend",
"build:docs": "copy-files-from-to --config docs/copy-files-from-to.json",
"build": "npm run build:be && npm run build:fe",
"gen:fe": "npm run gen -w frontend",
"start": "npm run start:prod -w backend"
"start": "npm run start:prod -w backend",
"docs": "docsify serve ./docs",
"deploy:docs": "npm run build:docs && netlify deploy --dir=dist/docs --prod"
},
"devDependencies": {
"copy-files-from-to": "^3.2.2",
"docsify-cli": "^4.4.4",
"netlify-cli": "^10.5.1"
}
}