-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.88 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
{
"name": "skill-management-platform",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"predev": "node scripts/free-port.mjs 3000 3001",
"dev": "concurrently -n api,web -c blue,green \"npm run dev:api\" \"npm run dev:web\"",
"predev:api": "node scripts/free-port.mjs 3000",
"dev:api": "npm --workspace @skill-platform/api run dev",
"predev:web": "node scripts/free-port.mjs 3001",
"dev:web": "npm --workspace @skill-platform/web run dev",
"build:web": "npm --workspace @skill-platform/web run build",
"start:web": "npm --workspace @skill-platform/web run start",
"start:api": "npm --workspace @skill-platform/api run start",
"dev:worker": "npm --workspace @skill-platform/worker run dev",
"infra:up": "docker compose up -d postgres minio",
"infra:down": "docker compose down",
"skill": "npm --workspace @skill-platform/cli run dev --",
"typecheck": "tsc -p tsconfig.json --noEmit && npm --workspace @skill-platform/web run typecheck",
"lint": "tsc -p tsconfig.json --noEmit && npm --workspace @skill-platform/web run typecheck && eslint . --max-warnings=0",
"review:demo": "npm --workspace @skill-platform/cli run dev -- review examples/demo-skill",
"test": "vitest run",
"test:e2e": "playwright test",
"test:smoke": "node scripts/run-api-smoke.mjs",
"vt:stress": "tsx scripts/vt-lookup-stress.mjs --phase all --count 6",
"review:benchmark": "tsx scripts/review-benchmark.ts --sizes demo,1,10,50",
"review:benchmark:full": "tsx scripts/review-benchmark.ts --unlimited --vt-cold --sizes 1,10,50",
"review:export-examples": "tsx scripts/export-benchmark-examples.ts --sizes 1,10,50",
"test:watch": "vitest",
"verify:review-deps": "node scripts/verify-review-deps.mjs",
"skillnav:test": "pip install -e \"cli-py[dev]\" && pytest tests/skillnav -v",
"skillnav:lint": "python3 -m ruff check cli-py tests/skillnav && python3 -m mypy cli-py/src/skillnav",
"setup": "bash scripts/setup.sh",
"setup:skillspector": "bash scripts/install-skillspector.sh"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"commander": "^14.0.2",
"drizzle-orm": "^0.45.2",
"fastify": "^5.6.2",
"js-yaml": "^4.1.1",
"minio": "^8.0.7",
"pg": "^8.22.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.2",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.4",
"globals": "^17.12.0",
"jsdom": "^25.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.69.0",
"vitest": "^4.1.10"
}
}