-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "smartprobono-ai-enhanced",
"version": "2.0.0",
"description": "SmartProBono Legal Tech Platform with AI Development Agent",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"docker:up": "docker compose -f infra/docker-compose.yml up -d",
"docker:down": "docker compose -f infra/docker-compose.yml down",
"agent": "cd apps/agent && pnpm dev",
"frontend:dev": "cd frontend && npm start",
"backend:dev": "cd backend && python combined_server.py",
"test:frontend": "cd frontend && CI=true npm test -- --watchAll=false",
"test:backend": "cd backend && python -m pytest",
"test:all": "npm run test:frontend && npm run test:backend",
"setup": "pnpm install && npm run docker:up"
},
"devDependencies": {
"typescript": "^5.6.2",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BTheCoderr/SmartProBonoAPP.git"
},
"keywords": [
"legal-tech",
"ai-development",
"crm",
"document-generation",
"autonomous-coding"
],
"author": "Baheem Ferrell",
"license": "MIT"
}