|
{ |
|
"name": "lin", |
|
"version": "1.0.0", |
|
"description": "Community Manager Assistant for LinkedIn", |
|
"main": "index.js", |
|
"scripts": { |
|
"install:frontend": "cd frontend && npm install", |
|
"install:backend": "cd backend && pip install -r requirements.txt", |
|
"install:all": "npm run install:frontend && npm run install:backend", |
|
"install:all:win": "npm run install:frontend && cd backend && python -m pip install -r requirements.txt", |
|
"dev:frontend": "cd frontend && npm run dev", |
|
"dev:backend": "cd backend && set PYTHONPATH=. && python app.py", |
|
"dev:all": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"", |
|
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"", |
|
"build": "cd frontend && npm run build", |
|
"build:prod": "cd frontend && npm run build:prod", |
|
"preview": "cd frontend && npm run preview", |
|
"lint": "cd frontend && npm run lint", |
|
"lint:fix": "cd frontend && npm run lint:fix", |
|
"test": "cd frontend && npm run test", |
|
"test:backend": "cd backend && pytest", |
|
"start": "npm run dev:all", |
|
"start:frontend": "npm run dev:frontend", |
|
"start:backend": "npm run dev:backend", |
|
"setup": "npm run install:all && npm run build", |
|
"setup:win": "npm run install:all:win && npm run build", |
|
"clean": "cd frontend && npm run clean 2>/dev/null || true", |
|
"reset": "npm run clean && npm run install:all" |
|
}, |
|
"keywords": [ |
|
"linkedin", |
|
"community-manager", |
|
"social-media", |
|
"automation", |
|
"flask", |
|
"react", |
|
"tailwindcss" |
|
], |
|
"author": "Lin Development Team", |
|
"license": "MIT", |
|
"devDependencies": { |
|
"concurrently": "^8.2.0" |
|
}, |
|
"engines": { |
|
"node": ">=16.0.0", |
|
"npm": ">=8.0.0" |
|
}, |
|
"dependencies": { |
|
"@rushstack/eslint-patch": "^1.12.0" |
|
} |
|
} |