-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 742 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 742 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
{
"name": "bit",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"api": "pnpm --filter api",
"web": "pnpm --filter web",
"biome:check": "biome check --apply .",
"prepare": "husky",
"pkl:eval": "pkl eval apps/api/conf/dev.config.pkl -f yaml -o apps/api/conf/dev.config.yaml"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"lint-staged": {
"**/*.{js,ts,tsx}": ["biome check --apply"],
"**/*": ["biome check --apply --files-ignore-unknown=true"]
}
}