File size: 1,801 Bytes
25f22bf
 
 
 
 
 
 
 
 
 
 
35c65a3
25f22bf
35c65a3
25f22bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35c65a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "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"
  }
}