forked from tsedio/tsed-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.61 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@tsed/cli-root",
"version": "1.18.0",
"description": "CLI to bootstrap your Ts.ED project",
"private": true,
"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 packages --ext .ts",
"test:lint:fix": "eslint packages --ext .ts --fix",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "monorepo 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": "lerna run build && ts-doc",
"vuepress:build": "cross-env NODE_ENV=production vuepress build docs",
"vuepress:serve": "vuepress dev docs",
"prettier": "prettier '{packages,test}/**/*.ts' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run"
},
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/tsed-cli.git"
},
"keywords": [
"ts",
"log",
"debug",
"typescript",
"trace"
],
"author": "Romain Lenzotti",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypedProject/tsed-cli/issues"
},
"homepage": "https://github.com/TypedProject/tsed-cli",
"dependencies": {
"@samverschueren/stream-to-observable": "0.3.0",
"@tsed/core": "^5.65.2",
"@tsed/di": "^5.65.2",
"@tsed/logger": "5.5.0",
"@typescript-eslint/eslint-plugin": "2.31.0",
"@typescript-eslint/parser": "2.31.0",
"any-observable": "0.5.1",
"axios": "0.19.2",
"chalk": "3.0.0",
"commander": "5.0.0-3",
"consolidate": "0.15.1",
"execa": "4.0.0",
"figures": "3.2.0",
"fs-extra": "8.1.0",
"handlebars": "4.7.3",
"handlebars-helpers": "0.10.0",
"inquirer": "7.0.5",
"inquirer-autocomplete-prompt": "1.0.2",
"js-yaml": "3.13.1",
"lerna": "3.18.4",
"listr": "0.14.3",
"module-alias": "2.2.2",
"read-pkg-up": "7.0.1",
"registry-url": "5.1.0",
"rxjs": "6.5.4",
"semver": "7.1.3",
"split": "1.0.1",
"tslib": "1.11.1",
"update-notifier": "4.1.0"
},
"devDependencies": {
"@tsed/monorepo-utils": "1.8.3",
"@typedproject/ts-doc": "4.0.6",
"@types/jest": "26.0.0",
"@types/node": "13.7.7",
"concurrently": "5.1.0",
"coveralls": "3.0.9",
"cross-env": "7.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-jest": "24.0.1",
"eslint-plugin-mocha": "8.0.0",
"gflow": "5.1.1",
"husky": "4.2.3",
"jest": "26.0.1",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"semantic-release": "^17.0.4",
"sinon": "9.0.0",
"sinon-chai": "3.5.0",
"ts-jest": "26.1.0",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"typescript": "3.9.5",
"vue-analytics": "5.22.1",
"vuepress": "1.5.2",
"vuepress-theme-tsed": "2.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"directories": {
"packages": "packages",
"test": "test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"watchpack": "1.6.1"
},
"monorepo": {
"productionBranch": "master",
"npmAccess": "public",
"ghpages": {
"dir": "./docs/.vuepress/dist",
"url": "https://github.com/TypedProject/tsed-cli.git",
"branch": "gh-pages",
"cname": "cli.tsed.io"
}
}
}