-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.42 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
{
"name": "lfx-changelog-monorepo",
"license": "MIT",
"author": "The Linux Foundation",
"private": true,
"scripts": {
"build": "turbo run build",
"start": "turbo run start --log-prefix=none",
"lint": "turbo run lint",
"watch": "turbo run watch",
"test": "turbo run test",
"start:server": "turbo run start:server",
"format": "prettier --write \"**/*.{ts,js,html,css,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,js,html,css,md,json}\"",
"markdownlint": "markdownlint-cli2 \"*.md\" \"apps/lfx-changelog/*.md\"",
"markdownlint:fix": "markdownlint-cli2 --fix \"*.md\" \"apps/lfx-changelog/*.md\"",
"db:generate": "yarn workspace lfx-changelog run prisma generate",
"db:migrate": "yarn workspace lfx-changelog run prisma migrate dev",
"db:seed": "yarn workspace lfx-changelog run prisma db seed",
"db:studio": "yarn workspace lfx-changelog run prisma studio",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"e2e": "turbo run e2e",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.12",
"turbo": "^2.6.3",
"typescript": "5.8.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.12.0",
"workspaces": [
"apps/*",
"packages/*"
]
}