-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 896 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "vibe-coding-starter-kit",
"private": true,
"scripts": {
"doctor": "node scripts/doctor.mjs",
"predev": "node scripts/doctor.mjs",
"dev": "sh scripts/dev.sh",
"dev:web": "pnpm --filter @vibe-coding-starter-kit/web dev",
"dev:api": "cd services/api && uvicorn main:app --reload --port ${API_PORT:-8000}",
"build": "pnpm --filter @vibe-coding-starter-kit/web build",
"lint": "pnpm --filter @vibe-coding-starter-kit/web lint",
"lint:api": "cd services/api && .venv/bin/ruff check .",
"test:api": "cd services/api && .venv/bin/python -m pytest",
"check:structure": "cd services/api && .venv/bin/python -m pytest tests/test_structure.py -v",
"test:e2e": "pnpm --filter @vibe-coding-starter-kit/web exec playwright test"
},
"devDependencies": {
"concurrently": "^9.1.0"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}