-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "bbv-nestjs-packages",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:cov": "turbo run test:cov",
"docs": "turbo run docs",
"clean": "turbo run clean",
"deps:graph": "turbo run build --graph",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"prettier": "^3.2.0",
"turbo": "^2.0.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@10.0.0"
}