-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 873 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "vibe-coding-starter-kit",
"private": true,
"scripts": {
"dev": "concurrently --names web,api --prefix-colors blue,green \"pnpm dev:web\" \"pnpm dev:api\"",
"dev:web": "pnpm --filter @vibe-coding-starter-kit/web dev",
"dev:api": "cd services/api && uvicorn main:app --reload --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"
}
}