-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.76 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.76 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
56
57
58
59
60
61
62
63
64
65
{
"name": "companyofone",
"version": "1.0.0",
"description": "The solopreneur success hub",
"scripts": {
"orchestrate": "node scripts/agent-orchestrator.js",
"background": "echo \"Background agent started with prompt:\" && echo $CURSOR_BACKGROUND_AGENT_PROMPT",
"dev": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:frontend": "cd frontend && npm test",
"test:backend": "cd backend && npm test",
"test:all": "npm run test:frontend && npm run test:backend",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"type-check": "npm run type-check:frontend && npm run type-check:backend",
"type-check:frontend": "cd frontend && npm run type-check",
"type-check:backend": "cd backend && npm run type-check",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"setup:monitoring": "./scripts/setup-monitoring.sh",
"setup:monitoring-only": "./scripts/setup-monitoring.sh --monitoring-only",
"monitoring:start": "docker-compose -f docker-compose.monitoring.yml up -d",
"monitoring:stop": "docker-compose -f docker-compose.monitoring.yml down",
"monitoring:logs": "docker-compose -f docker-compose.monitoring.yml logs -f",
"monitoring:restart": "npm run monitoring:stop && npm run monitoring:start",
"blog:list": "node scripts/blog-admin.js list",
"blog:create": "node scripts/blog-admin.js create",
"blog:publish": "node scripts/blog-admin.js publish",
"blog:delete": "node scripts/blog-admin.js delete",
"blog:stats": "node scripts/blog-admin.js stats",
"blog:init": "mkdir -p backend/data/blog && cp backend/data/blog/sample-posts.json backend/data/blog/posts.json && echo 'Blog initialized with sample posts!'",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"start:full": "concurrently \"npm run start:backend\" \"npm run start:frontend\""
},
"keywords": [
"company",
"of",
"one"
],
"author": "Utlyze",
"license": "MIT",
"devDependencies": {
"@jest/types": "^29.6.3",
"@playwright/test": "^1.40.1",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}