-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.06 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
{
"name": "screen-tracker",
"version": "1.0.0",
"private": true,
"description": "Windows screen tracking system with AI-powered activity analysis",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"clean": "rm -rf backend/dist frontend/.next backend/database/*.db node_modules"
},
"keywords": [
"screen-tracking",
"productivity",
"time-management",
"ollama",
"ai"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}