-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nhtsa-api-wrapper",
"private": true,
"version": "0.0.0",
"description": "@shaggytools/nhtsa-api-wrapper Monorepo",
"author": "Brandon Eichler <github.com/shaggytech>",
"license": "MIT",
"homepage": "https://www.shaggytech.com/nhtsa-api-wrapper",
"repository": {
"type": "git",
"url": "https://github.com/ShaggyTech/nhtsa-api-wrapper.git"
},
"bugs": {
"url": "https://github.com/ShaggyTech/nhtsa-api-wrapper/issues"
},
"packageManager": "pnpm@8.1.0",
"workspaces": [
"apps/*",
"config/*",
"packages/*"
],
"engines": {
"node": ">=18.13.0",
"pnpm": ">=7.27.1"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"build:lib": "pnpm --filter @shaggytools/nhtsa-api-wrapper run build",
"build:docs": "pnpm --filter docs run build",
"dev": "turbo run dev --parallel",
"dev:lib": "pnpm --filter @shaggytools/nhtsa-api-wrapper run dev",
"dev:docs": "pnpm --filter docs run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"test": "turbo run test",
"coverage": "pnpm --filter @shaggytools/nhtsa-api-wrapper run coverage",
"clean": "turbo run clean",
"ci:version": "changeset version && pnpm i --lockfile-only && pnpm run build",
"ci:publish": "pnpm run build && pnpm publish -r"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"husky": "8.0.3",
"rimraf": "5.0.1",
"turbo": "1.9.9",
"typescript": "5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm verify"
}
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}