-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.49 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.49 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
{
"name": "nodeboot-monorepo",
"version": "1.0.0",
"description": "Node-Boot monorepo sample project using Turborepo. This project demonstrates how to manage multiple packages and services within a single repository using Turborepo, showcasing the capabilities of the Node-Boot framework.",
"author": "Manuel Santos <ney.br.santos@gmail.com>",
"license": "MBL",
"keywords": [
"nodeboot",
"framework",
"turborepo",
"monorepo",
"typescript"
],
"repository": {
"type": "git",
"url": "https://git.i.mercedes-benz.com/dh-io-backstage/tech-insights.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18",
"pnpm": ">=7.5.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "turbo run build",
"build:clean": "turbo run clean:build",
"dev": "turbo run dev",
"lint-format": "turbo run --parallel lint format ",
"lint-format:fix": "turbo run --parallel lint:fix format:fix",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "turbo run --parallel test",
"tsc": "turbo run --parallel tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"prepare": "husky install",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"format:check": "prettier --check '{services,shared}/**/{package.json,src/*.ts}'",
"format:fix": "prettier --write '{services,shared}/**/{package.json,src/*.ts}'",
"git:prune": "git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done",
"npm:prune": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"changeset:create": "pnpm changeset",
"changeset:format": "pnpm prettier --write '{services,shared}/*/{package.json,CHANGELOG.md}'",
"changeset:version": "pnpm changeset version",
"changeset:status": "pnpm changeset status",
"nodeboot:update": "turbo run nodeboot:update",
"nodeboot:check:type-deps": "node ./node_modules/@nodeboot/tools/dist/check-type-dependencies.js",
"nodeboot:check:local-deps": "node ./node_modules/@nodeboot/tools/dist/verify-local-dependencies.js",
"nodeboot:check:docs": "node ./node_modules/@nodeboot/tools/dist/check-docs-quality.js",
"port-forward:db-dev": "kubectl port-forward pod/mongodb-ss-0 27017:27017 -n mongodb-dev",
"port-forward:db-prod": "kubectl port-forward pod/mongodb-ss-0 27017:27017 -n mongodb-prod"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@jest/globals": "^29.5.0",
"@nodeboot/tools": "^1.0.2",
"@swc/core": "^1.3.41",
"@swc/jest": "^0.2.24",
"@tsconfig/node-lts-strictest": "^18.12.1",
"@types/jest": "^29.5.11",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^8.57.1",
"eslint-config-katxupa": "^1.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.1.2",
"nodemon": "^2.0.21",
"pinst": "^3.0.0",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^5.0.5",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.9.2"
},
"resolutions": {
"jsonpath-plus": "^10.3.0"
},
"packageManager": "pnpm@10.17.1"
}