-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 722 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "pywebflow-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start:frontend": "bun run --cwd packages/frontend dev",
"build:frontend": "bun run --cwd packages/frontend build",
"lint:frontend": "bun run --cwd packages/frontend lint",
"preview:frontend": "bun run --cwd packages/frontend preview",
"prepare": "husky",
"format": "bun run format:frontend && bun run format:api",
"format:frontend": "prettier --write 'packages/frontend/**/*.{js,ts,tsx,json,md,scss,css}'",
"format:api": "prettier --write 'packages/api/**/*.{js,ts,tsx,json,md,scss,css}'"
},
"devDependencies": {
"prettier": "3.5.1"
},
"packageManager": "bun@latest"
}