-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.95 KB
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
52
53
{
"name": "supportbro-monorepo",
"version": "1.0.0",
"description": "SupportBro - A comprehensive support ticket system with AI assistance",
"private": true,
"workspaces": [
"support-frontend",
"support-ticket-system"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" --names \"backend,frontend\" --prefix-colors \"blue,green\"",
"dev:backend": "cd support-ticket-system && npm run dev",
"dev:frontend": "cd support-frontend && npm start",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\" --names \"backend,frontend\" --prefix-colors \"blue,green\"",
"start:backend": "cd support-ticket-system && npm start",
"start:frontend": "cd support-frontend && npm start",
"install:all": "npm install && npm run install:backend && npm run install:frontend",
"install:backend": "cd support-ticket-system && npm install",
"install:frontend": "cd support-frontend && npm install",
"build": "npm run build:frontend",
"build:frontend": "cd support-frontend && npm run build",
"build:backend": "cd support-ticket-system && npm run build",
"test": "npm run test:frontend",
"test:frontend": "cd support-frontend && npm test",
"clean": "npm run clean:backend && npm run clean:frontend",
"clean:backend": "cd support-ticket-system && rm -rf node_modules package-lock.json",
"clean:frontend": "cd support-frontend && rm -rf node_modules package-lock.json",
"lint": "echo 'Linting not configured yet'",
"format": "echo 'Formatting not configured yet'"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Sam123336/SupportBro.git"
},
"keywords": [
"support-ticket",
"helpdesk",
"ai-assistant",
"socket.io",
"react",
"express",
"mongodb"
],
"author": "Sam123336",
"license": "ISC"
}