-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.96 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
{
"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",
"lint": "tsc -p tsconfig.json --noEmit",
"review:demo": "npm --workspace @skill-platform/cli run dev -- review examples/demo-skill",
"test": "vitest run",
"test:e2e": "playwright test",
"vt:stress": "tsx scripts/vt-lookup-stress.mjs --phase all --count 6",
"test:watch": "vitest",
"skillnav:test": "pip install -e \"cli-py[dev]\" && pytest tests/skillnav -v",
"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": {
"@playwright/test": "^1.62.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.2",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}