* feat(repo): add project structure, docker-compose, and documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat(auth): implement jwt authentication with register and login 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat(auth): implement jwt authentication and add backend to docker-compose * feat(auth): add authentication with jwt, login, signup, and dashboard pages --------- Co-authored-by: SamoilenkoVadym <samoylenko.vadym@gmail.comm> Co-authored-by: Claude <noreply@anthropic.com>
30 lines
No EOL
798 B
JSON
30 lines
No EOL
798 B
JSON
{
|
|
"name": "n8n-saas-marketplace",
|
|
"version": "1.0.0",
|
|
"description": "n8n SaaS Marketplace - A platform for discovering and deploying n8n workflows",
|
|
"private": true,
|
|
"workspaces": [
|
|
"backend",
|
|
"frontend"
|
|
],
|
|
"scripts": {
|
|
"dev": "concurrently \"npm:dev:*\"",
|
|
"dev:backend": "npm run dev --workspace=backend",
|
|
"dev:frontend": "npm run dev --workspace=frontend",
|
|
"build": "npm run build --workspaces",
|
|
"build:backend": "npm run build --workspace=backend",
|
|
"build:frontend": "npm run build --workspace=frontend",
|
|
"install:all": "npm install && npm install --workspaces"
|
|
},
|
|
"keywords": [
|
|
"n8n",
|
|
"marketplace",
|
|
"workflow",
|
|
"automation"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.2"
|
|
}
|
|
} |