-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.52 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
43
44
45
46
{
"name": "turborepo-datadog-transports",
"private": true,
"scripts": {
"add-changeset": "changeset add",
"build": "turbo run build",
"changeset": "changeset",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"format": "turbo run format --continue --",
"format:fix": "turbo run format --continue -- --write",
"lint": "turbo run lint --continue --",
"lint:fix": "turbo run lint --continue -- --apply",
"lint:packages": "pnpm run lint:packages:semver && pnpm run lint:packages:mismatches",
"lint:packages:semver": "syncpack lint-semver-ranges",
"lint:packages:mismatches": "syncpack list-mismatches",
"publish-packages": "turbo run build && changeset version && changeset publish",
"release": "changeset publish",
"syncpack": "syncpack",
"test": "turbo run test --",
"typecheck": "turbo run typecheck",
"version-packages": "changeset version",
"prepare": "husky install"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/node": "^20.12.5",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"syncpack": "^12.3.0",
"tsconfig": "workspace:*",
"turbo": "^1.13.2",
"typescript": "^5.4.4"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=18"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,json}": ["pnpm lint:fix"]
}
}