-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 1.89 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "aleppo.dev",
"version": "1.0.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aleppo-dev-community/aleppo.dev"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=@workspace/web",
"prepare": "husky",
"lint": "pnpm run -w --parallel --stream '/^lint:/'",
"lint:prettier": "prettier --check \"**/*.{ts,tsx,md}\"",
"lint:sherif": "sherif",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"commitlint": "^19.8.1",
"husky": "^9.1.7",
"prettier": "^3.5.1",
"sherif": "^1.6.1",
"turbo": "^2.4.2",
"typescript": "5.7.3"
},
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=20"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "pnpm run lint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"clean",
"doc",
"feat",
"fix",
"perf",
"ref",
"revert",
"style",
"test"
]
],
"subject-case": [
0,
"always"
],
"body-max-line-length": [
2,
"always",
200
],
"body-leading-blank": [
2,
"always",
true
]
}
},
"pnpm": {
"onlyBuiltDependencies": [
"core-js-pure",
"esbuild",
"sharp",
"workerd"
]
}
}