-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 KB
/
package.json
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
{
"name": "frontie",
"version": "0.0.0",
"description": "Frontend Components Monorepo",
"packageManager": "bun@1.1.34",
"license": "MIT",
"private": true,
"repository": "https://github.com/zbiljic/frontie.git",
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/*"
],
"scripts": {
"biome:apply": "biome check --apply *",
"biome:check": "biome check *",
"biome:ci": "biome ci *",
"biome:format": "biome format --write *",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"prepare": "husky",
"stylelint": "stylelint \"**/*.css\" --cache",
"syncpack": "syncpack list-mismatches",
"syncpack:format": "syncpack format",
"syncpack:update": "syncpack update",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"husky": "9.1.6",
"stylelint": "16.10.0",
"stylelint-config-standard-scss": "13.1.0",
"syncpack": "13.0.0",
"turbo": "2.2.3"
}
}