-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.59 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
44
{
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@commitlint/cli": "^20.4.1",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"turbo": "^2.8.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{css,html,md}": [
"biome format --write --no-errors-on-unmatched"
],
"*.{js,ts,jsx,tsx}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"name": "hotspot-fe",
"packageManager": "pnpm@10.29.3",
"private": true,
"scripts": {
"build": "turbo run build",
"build:admin": "turbo run build --filter=@hotspot/admin",
"build:ui": "turbo run build --filter=@hotspot/ui",
"build:web": "turbo run build --filter=@hotspot/web",
"check": "biome check --write .",
"check-types": "turbo run check-types",
"dev": "turbo run dev",
"dev:admin": "turbo run dev --filter=@hotspot/admin",
"dev:admin:https": "turbo run dev --filter=@hotspot/admin -- --experimental-https --experimental-https-cert ../../backoffice.hotspot.pics.pem --experimental-https-key ../../backoffice.hotspot.pics-key.pem -H backoffice.hotspot.pics -p 3001",
"dev:web": "turbo run dev --filter=@hotspot/web",
"dev:web:https": "turbo run dev --filter=@hotspot/web -- --experimental-https --experimental-https-cert ../../hotspot.pics.pem --experimental-https-key ../../hotspot.pics-key.pem",
"format": "biome format --write .",
"lint": "biome check .",
"prepare": "husky install",
"reporter": "biome check --reporter=summary"
}
}