-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.7 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
{
"name": "artemisa",
"version": "1.5.11",
"description": "Plataforma open-source para diseñar agentes de desarrollo y operación mediante un arbol de decisiones",
"license": "MPL-2.0",
"private": true,
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*",
"frontend",
"agent-creator"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"dev:frontend": "cd frontend && npm run dev",
"dev:agent-creator": "cd agent-creator && npm run dev",
"start": "tsx src/server.ts",
"test": "node test/api_test.mjs",
"test:unit": "node --import tsx/esm --test --test-concurrency=4 test/*.test.mjs",
"test:all": "npm run test:unit && npm test",
"test:e2e": "cd e2e && npx playwright test",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"docker:build": "docker compose -f docker/docker-compose.yml build",
"docker:up": "docker compose -f docker/docker-compose.yml up -d",
"docker:down": "docker compose -f docker/docker-compose.yml down",
"docker:logs": "docker compose -f docker/docker-compose.yml logs -f",
"prepare": "husky || true",
"dev:all": "npm run dev & npm run dev:frontend & npm run dev:agent-creator",
"install:all": "npm install && cd frontend && npm install && cd ../agent-creator && npm install",
"build:all": "npm run build && cd frontend && npm run build && cd ../agent-creator && npm run build",
"clean:all": "npm run clean && rm -rf frontend/.next frontend/node_modules agent-creator/dist agent-creator/node_modules",
"lint:all": "npx tsc --noEmit && npx prettier --check .",
"status": "echo '=== Backend ===' && node -e \"console.log(require('./package.json').version)\" && echo '=== Frontend ===' && node -e \"console.log(require('./frontend/package.json').version)\" && echo '=== Agent Creator ===' && node -e \"console.log(require('./agent-creator/package.json').version)\"",
"dead-code": "npx knip --no-exit-code",
"dead-code:fix": "npx knip --fix --no-exit-code"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"pino-pretty": "^13.1.3",
"prettier": "^3.5.3",
"tsx": "^4.23.1",
"typescript": "^5.9.3"
},
"type": "module",
"dependencies": {
"@types/compression": "1.8.1",
"compression": "1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.3.0",
"pino": "^9.14.0"
},
"lint-staged": {
"src/**/*.ts": [
"npx tsc --noEmit --skipLibCheck",
"prettier --check"
],
"*.{ts,js,mjs,json,md}": [
"prettier --check"
]
},
"knip": {
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
".": {
"entry": [
"src/server.ts",
"src/creator/router.ts"
],
"project": [
"src/**/*.ts"
],
"ignoreDependencies": [
"pino-pretty"
]
},
"frontend": {
"entry": [
"src/app/layout.tsx",
"src/app/page.tsx",
"next.config.ts"
],
"project": [
"src/**/*.{ts,tsx}"
]
},
"agent-creator": {
"entry": [
"src/main.jsx",
"vite.config.js"
],
"project": [
"src/**/*.{js,jsx,ts,tsx}"
]
}
}
},
"overrides": {
"postcss": "^8.5.23",
"sharp": "^0.35.3",
"glob": "^11.0.0",
"@eslint/eslintrc": {
"minimatch": "^10.2.6"
}
}
}