-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.96 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.96 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
54
55
{
"name": "finsync360",
"version": "1.0.0",
"description": "Comprehensive cloud-based ERP system with Tally integration",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run backend:dev\" \"npm run frontend:dev\"",
"backend:dev": "cd backend && npm run dev",
"frontend:dev": "cd frontend && npm start",
"mobile:dev": "cd mobile && npm start",
"desktop:dev": "cd desktop && npm run electron:dev",
"desktop-agent:dev": "cd desktop-agent && npm run electron:dev",
"ml-service:dev": "cd ml-service && python -m uvicorn main:app --reload",
"build": "npm run backend:build && npm run frontend:build",
"backend:build": "cd backend && npm run build",
"frontend:build": "cd frontend && npm run build",
"test": "npm run backend:test && npm run frontend:test",
"backend:test": "cd backend && npm test",
"frontend:test": "cd frontend && npm test",
"install:all": "npm install && npm run install:backend && npm run install:frontend && npm run install:mobile && npm run install:desktop && npm run install:desktop-agent && npm run install:ml-service",
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"install:mobile": "cd mobile && npm install",
"install:desktop": "cd desktop && npm install",
"install:desktop-agent": "cd desktop-agent && npm install",
"install:ml-service": "cd ml-service && pip install -r requirements.txt",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"keywords": [
"erp",
"tally",
"accounting",
"inventory",
"gst",
"payments",
"business-intelligence"
],
"author": "FinSync360 Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2",
"cross-env": "^7.0.3"
},
"workspaces": [
"backend",
"frontend",
"mobile",
"desktop",
"desktop-agent",
"ml-service",
"shared"
]
}