-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 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
{
"name": "monorepo",
"version": "0.0.0",
"private": true,
"description": "Polyglot monorepo for PHP, JS, Python, Go, and Rust packages",
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"format:check": "turbo run format:check",
"clean": "turbo run clean",
"changeset": "changeset",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.{js,ts,json,md}": [
"prettier --write"
],
"*.{php}": [
"php-cs-fixer fix --dry-run --diff"
],
"*.py": [
"ruff format"
],
"*.go": [
"gofmt -w"
],
"*.rs": [
"cargo fmt"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}