-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 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
{
"name": "datacat",
"version": "1.0.0",
"description": "Universal AI-Powered Data Capture System",
"private": true,
"scripts": {
"dev": "echo '\n\ud83d\ude80 Starting development servers...\n' && concurrently -k -n FRONTEND,BACKEND -c blue,green \"cd frontend && npm run dev\" \"cd backend && npm start\"",
"d": "npm run dev",
"links": "echo '\n\ud83d\udd17 DEVELOPMENT SERVERS:\n\ud83d\udcf1 Frontend: http://localhost:3000\n\u2699\ufe0f Backend: http://localhost:5001\n'",
"build": "cd frontend && npm run build",
"start": "concurrently -k -n FRONTEND,BACKEND -c blue,green \"cd frontend && npm run start\" \"cd backend && npm run start\"",
"lint": "cd frontend && npm run lint",
"install-frontend": "cd frontend && npm install",
"setup": "npm run install-frontend",
"docker:dev": "docker-compose up --build",
"docker:prod": "docker-compose -f docker-compose.prod.yml up --build",
"docker:down": "docker-compose down",
"docker:clean": "docker-compose down -v --remove-orphans && docker system prune -f",
"docker:migrate": "docker-compose --profile migrate up migrate",
"docker:logs": "docker-compose logs -f",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"test": "cd frontend && npx vitest run",
"test:watch": "cd frontend && npx vitest",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:debug": "npx playwright test --debug",
"test:e2e:headed": "npx playwright test --headed",
"test:e2e:report": "npx playwright show-report",
"typecheck": "cd frontend && npx tsc --noEmit",
"verify": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"keywords": [
"data-capture",
"forms",
"ai",
"nextjs",
"react",
"typescript",
"automation"
],
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.62.1",
"concurrently": "^10.0.5"
}
}