-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 5.21 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 5.21 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "pidea",
"version": "1.0.3",
"description": "Personal IDE Agent - A unified development platform",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"setup": "node setup.js",
"dev": "concurrently --prefix none \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run start --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"dev:postgres": "docker-compose -f docker-compose.dev.yml up -d && sleep 5 && concurrently --prefix none \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:postgres:rebuild": "docker-compose -f docker-compose.dev.yml down && docker-compose -f docker-compose.dev.yml build --no-cache pidea-db && docker-compose -f docker-compose.dev.yml up -d",
"dev:postgres:clean": "docker-compose -f docker-compose.dev.yml down -v && docker-compose -f docker-compose.dev.yml build --no-cache pidea-db && docker-compose -f docker-compose.dev.yml up -d",
"db:reset": "docker-compose -f docker-compose.dev.yml down && docker volume rm pidea_pidea-db-dev-data && docker-compose -f docker-compose.dev.yml build --no-cache && docker-compose -f docker-compose.dev.yml up",
"db:clean": "docker-compose -f docker-compose.dev.yml down && docker volume rm pidea_pidea-db-dev-data",
"db:rebuild": "docker-compose -f docker-compose.dev.yml build --no-cache && docker-compose -f docker-compose.dev.yml up",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "npm run start --workspace=backend",
"start:frontend": "npm run dev --workspace=frontend",
"install:all": "npm install && npm install --workspace=backend && npm install --workspace=frontend",
"build": "npm run build --workspace=frontend",
"test:backend": "npm --prefix backend run test:full",
"test:frontend": "npm --prefix frontend run test",
"test:full": "npm run test:backend && npm run test:frontend",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"clean": "npm run clean --workspaces && rm -rf node_modules",
"analyze:workflows": "node scripts/workflow-analyzer.js",
"open:workflows": "node scripts/open-workflow-report.js"
},
"dependencies": {
"@headlessui/react": "^2.2.4",
"@heroicons/react": "^2.2.0",
"autoprefixer": "^10.4.21",
"chalk": "^5.4.1",
"jsdom": "^26.1.0",
"marked": "^16.0.0",
"module-alias": "^2.2.3",
"playwright": "^1.54.1",
"postcss": "^8.5.6",
"prop-types": "^15.8.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwindcss": "^4.1.11",
"zustand": "^5.0.6"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@eslint/js": "^9.29.0",
"@playwright/test": "^1.54.1",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.5.2",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"eslint": "^9.29.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"vite": "^7.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"ide",
"development",
"cursor",
"vscode",
"windsurf",
"ai",
"chat",
"productivity"
],
"author": "fr4iser90",
"license": "MIT",
"_moduleAliases": {
"@domain": "backend/domain",
"@application": "backend/application",
"@infrastructure": "backend/infrastructure",
"@presentation": "backend/presentation",
"@tests": "backend/tests",
"@cli": "backend/cli",
"@scripts": "backend/scripts",
"@config": "backend/config",
"@commands": "backend/application/commands",
"@handlers": "backend/application/handlers",
"@steps": "backend/domain/steps",
"@workflows": "backend/domain/workflows",
"@frameworks": "backend/domain/frameworks",
"@git": "backend/domain/workflows/git",
"@categories": "backend/application/commands/categories",
"@handler-categories": "backend/application/handlers/categories",
"@step-categories": "backend/domain/workflows/steps/categories",
"@workflow-categories": "backend/domain/workflows/categories",
"@entities": "backend/domain/entities",
"@repositories": "backend/domain/repositories",
"@services": "backend/domain/services",
"@value-objects": "backend/domain/value-objects",
"@messaging": "backend/infrastructure/messaging",
"@database": "backend/infrastructure/database",
"@external": "backend/infrastructure/external",
"@auth": "backend/infrastructure/auth",
"@auto": "backend/infrastructure/auto",
"@security": "backend/infrastructure/security",
"@logging": "backend/infrastructure/logging",
"@templates": "backend/infrastructure/templates",
"@strategies": "backend/infrastructure/strategies",
"@controllers": "backend/presentation/api/controllers",
"@websocket": "backend/presentation/websocket",
"@api": "backend/presentation/api"
}
}