-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"name": "skill-management-platform",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n api,web -c blue,green \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "npm --workspace @skill-platform/api run dev",
"dev:web": "npm --workspace @skill-platform/web run dev",
"build:web": "npm --workspace @skill-platform/web run build",
"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:watch": "vitest",
"setup": "bash scripts/setup.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": {
"@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"
}
}