-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
113 lines (113 loc) · 3.2 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@tsed/logger-root",
"version": "6.7.8",
"description": "A multi channel logger written in TypeScript.",
"private": true,
"type": "module",
"scripts": {
"clean": "monorepo clean workspace",
"test": "yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "yarn test:unit",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "yarn test:lint --fix",
"build": "monorepo build --verbose",
"compile": "nx run-many --target=build",
"sync:packages": "monorepo sync packages",
"docs:serve": "yarn api:build && yarn vuepress:serve",
"docs:build": "yarn api:build && yarn vuepress:build",
"docs:publish": "yarn docs:build && monorepo publish ghpages",
"api:build": "nx run-many --target=build && yarn tsdoc",
"vuepress:build": "cross-env NODE_ENV=production vuepress build docs",
"vuepress:serve": "vuepress dev docs",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/tsedio/logger.git"
},
"keywords": [
"ts",
"log",
"debug",
"typescript",
"trace"
],
"author": "Romain Lenzotti",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsedio/logger/issues"
},
"homepage": "https://github.com/tsedio/logger",
"dependencies": {
"colors": "1.4.0",
"date-format": "^4.0.14",
"nodemailer": "^6.9.9",
"nx": "^18.0.8",
"semver": "^7.6.0",
"streamroller": "^3.1.5",
"tslib": "2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@swc/core": "^1.4.6",
"@swc/jest": "0.2.36",
"@tsed/markdown-it-symbols": "3.19.5",
"@tsed/monorepo-utils": "2.3.5",
"@tsed/ts-doc": "^4.1.0",
"@types/jest": "^29.5.12",
"@types/node": "20.11.26",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"barrelsby": "2.8.1",
"concurrently": "^8.2.2",
"coveralls": "^3.1.1",
"cross-env": "7.0.3",
"entities": "4.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"gflow": "^5.1.4",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"semantic-release": "^23.0.2",
"semantic-release-slack-bot": "^4.0.2",
"ts-node": "^10.9.2",
"typescript": "5.4.2",
"vite": "5.1.6",
"vite-plugin-dts": "^3.7.3",
"vue-analytics": "5.22.1",
"vuepress": "1.9.10",
"vuepress-theme-tsed": "3.20.8"
},
"directories": {
"packages": "packages",
"test": "test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"monorepo": {
"productionBranch": "production",
"npmAccess": "public",
"ghpages": [
{
"dir": "./docs/.vuepress/dist",
"url": "https://github.com/tsedio/logger.git",
"branch": "gh-pages",
"cname": "logger.tsed.io"
}
]
},
"packageManager": "[email protected]"
}