forked from tsedio/tsed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
176 lines (176 loc) · 4.94 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
{
"name": "@tsed/root",
"version": "5.54.3",
"description": "A TypeScript Framework on top of Express",
"private": true,
"scripts": {
"postinstall": "node tasks/yarn/postinstall.js",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "semantic-release --dry-run",
"clean": "gulp clean:workspace",
"start": "lerna run start --scope=@tsed/integration --stream",
"test": "yarn clean && yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test nyc mocha",
"test:lint": "tslint --project tsconfig.json -e examples",
"test:lint:fix": "tslint --project tsconfig.json --fix",
"travis:deploy-once": "travis-deploy-once",
"travis:coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "yarn gulp examples:build && gulp repo:build",
"publish:dryRun": "yarn build && gulp repo:publishDryRun",
"docs:serve": "yarn api:build && yarn vuepress:serve ",
"docs:build": "yarn api:build && yarn vuepress:build && gulp docs:cnameBuild",
"docs:publish": "yarn docs:build && gulp docs:publish",
"examples:build": "gulp examples:build",
"examples:publish": "gulp examples:publish",
"api:build": "lerna run build && ts-doc",
"vuepress:build": "cross-env NODE_ENV=production vuepress build docs",
"vuepress:serve": "vuepress dev docs",
"prettier": "prettier '{src,test}/**/*.ts' --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/tsed.git"
},
"keywords": [
"Express",
"TypeScript",
"decorators",
"router",
"controllers",
"services",
"middlewares",
"models",
"mvc",
"injection",
"ioc",
"di",
"api",
"swagger",
"mongoose",
"ajv",
"socketio",
"ES2015",
"ES6",
"server",
"rest",
"validation",
"multer"
],
"author": "Romain Lenzotti",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypedProject/tsed/issues"
},
"homepage": "http://tsed.io/",
"dependencies": {
"@tsed/logger": "5.5.0",
"@types/bunyan": "^1.8.6",
"@types/bunyan-seq": "^0.2.2",
"@types/json-schema": "^7.0.0",
"bunyan": "^1.8.12",
"bunyan-seq": "^0.4.0",
"globby": "^11.0.0",
"lerna": "3.20.2",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.4.0"
},
"devDependencies": {
"@tsed/monorepo-utils": "1.3.3",
"@typedproject/ts-doc": "4.0.8",
"@types/chai": "4.2.10",
"@types/chai-as-promised": "7.1.2",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.3",
"@types/express-session": "1.17.0",
"@types/globby": "9.1.0",
"@types/graphql": "14.5.0",
"@types/mocha": "7.0.2",
"@types/mongoose": "5.7.6",
"@types/multer": "1.4.2",
"@types/node": "13.9.1",
"@types/passport": "1.0.3",
"@types/passport-local": "1.0.33",
"@types/passport-strategy": "0.2.35",
"@types/proxyquire": "1.3.28",
"@types/sinon": "7.5.2",
"@types/sinon-chai": "3.2.3",
"@types/socket.io": "2.1.4",
"@types/superagent": "4.1.7",
"@types/supertest": "2.0.8",
"@types/swagger-schema-official": "2.0.20",
"ajv": "6.12.0",
"apollo-datasource-rest": "0.8.0",
"apollo-server-express": "2.11.0",
"body-parser": "1.19.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chalk": "3.0.0",
"compression": "1.7.4",
"concurrently": "5.1.0",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"coveralls": "3.0.9",
"cross-env": "7.0.2",
"ejs": "3.0.1",
"ejs-lint": "1.0.1",
"execa": "4.0.0",
"express": "4.17.1",
"express-session": "1.17.0",
"fancy-log": "1.3.3",
"fs-extra": "9.0.0",
"gflow": "5.1.1",
"graphql": "14.6.0",
"gulp": "4.0.2",
"gulp-exec": "4.0.0",
"gulp-load-plugins": "2.0.2",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"method-override": "3.0.0",
"mocha": "7.1.0",
"mongoose": "5.9.4",
"multer": "1.4.2",
"nyc": "15.0.0",
"passport": "0.4.1",
"passport-local": "1.0.0",
"passport-strategy": "1.0.0",
"prettier": "1.19.1",
"proxyquire": "2.1.3",
"read-package-json": "2.1.1",
"require-dir": "1.2.0",
"semantic-release": "^15.13.18",
"semver": "7.1.3",
"sinon": "9.0.1",
"sinon-chai": "3.5.0",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"source-map-support": "0.5.16",
"supertest": "4.0.2",
"swagger-ui-dist": "3.25.0",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"tslib": "1.11.1",
"tslint": "6.1.0",
"type-graphql": "0.17.6",
"typeorm": "0.2.24",
"typescript": "3.8.3",
"vuepress": "1.4.0",
"vue-analytics": "5.22.1",
"vuepress-theme-tsed": "2.7.0"
},
"directories": {
"packages": "packages",
"test": "test"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}