-
-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
232 lines (232 loc) · 7.65 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
"name": "@tsed/root",
"version": "7.84.0",
"description": "A TypeScript Framework on top of Express",
"private": true,
"author": "Romain Lenzotti",
"license": "MIT",
"homepage": "https://tsed.io/",
"bugs": {
"url": "https://github.com/tsedio/tsed/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Romakita"
},
{
"type": "opencollective",
"url": "https://opencollective.com/tsed"
}
],
"repository": {
"type": "git",
"url": "https://github.com/tsedio/tsed.git"
},
"scripts": {
"postinstall": "node tools/yarn/postinstall.js && cd docs && yarn install && cd .. && node ./tools/github-sponsors/bin/github-sponsors.js",
"configure": "monorepo ci configure",
"clean": "monorepo clean workspace",
"test": "vitest run",
"test:ci": "yarn test:lint && yarn test:core && yarn test:specs && yarn test:platform && yarn test:integration && yarn test:graphql && yarn test:orm && yarn test:security && yarn test:third-parties",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "eslint '**/*.{ts,js}' --fix",
"test:core": "lerna run test:ci --scope '@tsed/{core,di,common,engines,normalize-path}' --stream --concurrency 2",
"test:platform": "lerna run test:ci --ignore '@tsed/platform-{express,koa}' --scope '@tsed/platform-*' --stream --concurrency 2",
"test:integration": "lerna run test:ci --scope '@tsed/platform-{express,koa}' --stream --concurrency 2",
"test:orm": "lerna run test:ci --scope '@tsed/{adapters,adapters-redis,mikro-orm,mongoose,objection,prisma,typeorm}' --stream --concurrency 4",
"test:graphql": "lerna run test:ci --scope '@tsed/{apollo,typegraphql}' --stream",
"test:security": "lerna run test:ci --scope '@tsed/{jwks,oidc-provider,passport,oidc-provider-plugin-wildcard-redirect-uri}' --stream",
"test:specs": "lerna run test --scope '@tsed/{ajv,exceptions,json-mapper,schema,swagger}' --stream --concurrency 2",
"test:third-parties": "lerna run test:ci --scope '@tsed/{agenda,bullmq,components-scan,event-emitter,formio,pulse,sse,socketio,stripe,temporal,terminus,vike,vite-ssr-plugin,schema-formio,formio}' --stream --concurrency 1",
"coverage": "merge-istanbul --out coverage/coverage-final.json \"**/packages/**/coverage/coverage-final.json\" && nyc report --reporter text --reporter html --reporter lcov -t coverage --report-dir coverage",
"barrels": "lerna run barrels",
"build": "monorepo build --verbose",
"build:references": "node ./tools/typescript",
"build:eslint": "node ./tools/eslint",
"sync:packages": "monorepo sync packages",
"api:build": "lerna run build && tsdoc",
"docs:install": "sh ./scripts/docs/install.sh",
"docs:serve": "yarn api:build && yarn vuepress:docs:serve",
"docs:build": "yarn api:build && yarn docs:install && yarn vuepress:build",
"docs:publish": "CI=1 monorepo publish ghpages",
"vuepress:build": "concurrently \"yarn vuepress:docs:build\" \"yarn vuepress:ref:build\"",
"vuepress:docs:build": "rm -rf ./docs/api && cd ./docs && yarn vuepress:build",
"vuepress:ref:build": "cd ./docs-references && yarn vuepress:build",
"vuepress:docs:serve": "yarn docs:install && cd docs && yarn vuepress:serve -p 8080",
"vuepress:ref:serve": "yarn docs:install && cd docs-references && yarn vuepress:serve -p 8081",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run",
"benchmarks:prepare": "yarn build && rimraf ./benchmarks/node_modules/@tsed && cp -rf ./dist ./benchmarks/node_modules/@tsed",
"benchmarks:run": "cd benchmarks && yarn benchmarks",
"benchmarks": "yarn benchmarks:prepare && yarn benchmarks:run",
"prepare": "is-ci || husky install"
},
"keywords": [
"Express",
"Koa",
"TypeScript",
"decorators",
"router",
"controllers",
"services",
"middlewares",
"models",
"mvc",
"injection",
"ioc",
"di",
"api",
"ajv",
"adapters",
"graphql",
"json-mapper",
"formio",
"objection",
"openspec",
"passport",
"awa",
"socketio",
"stripe",
"swagger",
"typeoprm",
"ES2015",
"ES6",
"server",
"rest",
"validation",
"multer"
],
"dependencies": {
"@tsed/logger": ">=6.7.5",
"ajv": "8.12.0",
"axios": "1.7.4",
"change-case": "4.1.2",
"globby": "11.1.0",
"lerna": "7.4.2",
"rimraf": "5.0.5",
"rxjs": "^7.8.1",
"uuid": "9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@faker-js/faker": "6.3.1",
"@swc-node/register": "1.6.8",
"@swc/core": "1.7.26",
"@swc/helpers": "0.5.13",
"@tsed/monorepo-utils": "2.3.5",
"@tsed/ts-doc": "4.1.0",
"@types/axios": "0.14.0",
"@types/globby": "9.1.0",
"@types/node": "20.11.30",
"@types/superagent": "4.1.24",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-workspaces": "0.8.0",
"fs-extra": "^11.2.0",
"html-webpack-plugin": "5.6.0",
"husky": "8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^12.5.0",
"merge-istanbul": "1.1.4",
"micromatch": "4.0.8",
"moment": "2.30.1",
"prettier": "3.2.5",
"semantic-release": "23.0.5",
"semantic-release-slack-bot": "4.0.2",
"supertest": "6.2.2",
"ts-loader": "^9.4.2",
"tslib": "2.6.1",
"typescript": "4.9.5",
"unplugin-swc": "1.5.1",
"vite": "5.4.1",
"vite-plugin-dts": "^4.0.3",
"vitest": "2.0.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-remove-code-blocks": "^0.1.5"
},
"directories": {
"packages": "packages",
"test": "test"
},
"workspaces": {
"packages": [
"packages/*",
"packages/graphql/*",
"packages/orm/*",
"packages/utils/*",
"packages/platform/*",
"packages/security/*",
"packages/specs/*",
"packages/third-parties/*",
"tools/*"
]
},
"resolutions": {
"mongoose": "6.5.1"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/tsed",
"donation": {
"text": "Become a partner:"
}
},
"monorepo": {
"productionBranch": "production",
"developBranch": "production",
"npmAccess": "public",
"ignoreSyncDependencies": [
"express",
"@types/express"
],
"ghpages": [
{
"dir": "./docs/.vuepress/dist",
"url": "https://github.com/tsedio/tsed",
"branch": "gh-pages",
"cname": "tsed.io",
"if": "production"
},
{
"dir": "./docs-references/.vuepress/dist",
"url": "https://github.com/tsedio/api-docs.tsed.io.git",
"branch": "main",
"cname": "api-docs.tsed.io",
"if": "production"
},
{
"dir": "./docs/.vuepress/dist",
"url": "https://github.com/tsedio/rc.tsed.dev.git",
"branch": "gh-pages",
"cname": "rc.tsed.dev",
"if": "rc"
},
{
"dir": "./docs/.vitepress/dist",
"url": "https://github.com/tsedio/beta.tsed.dev.git",
"branch": "main",
"cname": "beta.tsed.dev",
"if": "beta"
},
{
"dir": "./docs/.vitepress/dist",
"url": "https://github.com/tsedio/alpha.tsed.dev.git",
"branch": "main",
"cname": "alpha.tsed.dev",
"if": "alpha"
}
]
},
"packageManager": "yarn@4.1.0"
}