-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.38 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.38 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
{
"name": "claude-code-mastery-starter-kit",
"version": "1.0.0",
"description": "Production-ready project starter kit based on Claude Code Mastery Guides V1-V5",
"type": "module",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:website": "PORT=3000 tsx watch src/index.ts",
"dev:api": "PORT=3001 tsx watch src/index.ts",
"dev:dashboard": "PORT=3002 tsx watch src/index.ts",
"dev:test:website": "PORT=4000 tsx watch src/index.ts",
"dev:test:api": "PORT=4010 tsx watch src/index.ts",
"dev:test:dashboard": "PORT=4020 tsx watch src/index.ts",
"build": "tsc --noEmit && tsc",
"postbuild": "pnpm build:optimize",
"build:optimize": "classpresso optimize",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm test:kill-ports && playwright test",
"test:e2e:ui": "pnpm test:kill-ports && playwright test --ui",
"test:e2e:headed": "pnpm test:kill-ports && playwright test --headed",
"test:e2e:report": "playwright show-report",
"test:e2e:chromium": "pnpm test:kill-ports && playwright test --project=chromium",
"test:kill-ports": "lsof -ti:4000,4010,4020 | xargs kill -9 2>/dev/null || true",
"lint": "tsc --noEmit",
"db:query": "tsx scripts/db-query.ts",
"db:query:list": "tsx scripts/db-query.ts --list",
"content:build": "tsx scripts/build-content.ts",
"content:build:id": "tsx scripts/build-content.ts --id",
"content:list": "tsx scripts/build-content.ts --list",
"content:dry-run": "tsx scripts/build-content.ts --dry-run",
"ai:monitor": "npx @rulecatch/ai-pooler monitor --no-api-key",
"docker:optimize": "echo 'Run /optimize-docker in Claude Code to audit your Dockerfile'",
"clean": "rm -rf dist coverage test-results playwright-report",
"precommit": "tsc --noEmit"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@playwright/test": "^1.42.0",
"@types/node": "^25.2.3",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"classpresso": "^1.7.2",
"vitest": "^2.0.0"
},
"dependencies": {
"strictdb": "^0.1.0",
"zod": "^3.23.0"
},
"peerDependencies": {
"mongodb": "^6.5.0"
},
"peerDependenciesMeta": {
"mongodb": {
"optional": true
}
}
}