-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 839 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
25
26
27
28
29
30
{
"name": "ea-financial-monorepo",
"type": "module",
"private": true,
"scripts": {
"lint": "biome lint .",
"lint:fix": "biome lint --write --unsafe .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write --unsafe .",
"lint:markdown": "markdownlint **/*.md --ignore node_modules",
"lint:markdown:fix": "markdownlint **/*.md --ignore node_modules --fix",
"typecheck": "bun --filter='*' typecheck"
},
"devDependencies": {
"@types/bun": "latest",
"@biomejs/biome": "^2.2.4",
"markdownlint-cli": "^0.41.0"
},
"peerDependencies": {
"typescript": "^5"
},
"workspaces": {
"packages": [
"projects/consumer-accounts-internal-api",
"projects/consumer-accounts-internal-app"
]
}
}