forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
154 lines (154 loc) · 4.54 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
{
"name": "nestjs",
"version": "5.0.0",
"description": "Modern, fast, powerful node.js web framework",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"precommit": "lint-staged",
"test": "nyc --require ts-node/register mocha packages/**/*.spec.ts --reporter spec",
"integration-test": "mocha integration/**/*.spec.ts --reporter spec --require ts-node/register",
"lint": "tslint -p tsconfig.json -c tslint.json \"packages/**/*.ts\" -e \"*.spec.ts\"",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"build": "gulp build && gulp move",
"build:lib": "gulp build --dist bundle",
"prepublish": "npm run build:lib",
"prepublish:beta": "npm run build:lib",
"publish": "./node_modules/.bin/lerna publish --exact -m \"chore(release) publish %s\"",
"publish:next": "./node_modules/.bin/lerna publish --npm-tag=next --skip-git -m \"chore(release) publish %s\"",
"publish:beta": "./node_modules/.bin/lerna publish --npm-tag=beta -m \"chore(release) publish %s\""
},
"engines": {
"node": ">=6.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"author": "Kamil Mysliwiec",
"license": "MIT",
"dependencies": {
"@nestjs/common": "beta",
"@nestjs/core": "beta",
"@nestjs/microservices": "beta",
"@nestjs/testing": "beta",
"@nestjs/websockets": "beta",
"axios": "^0.17.1",
"class-transformer": "^0.1.8",
"class-validator": "^0.8.1",
"cli-color": "^1.1.0",
"connect": "^3.6.6",
"cors": "^2.8.4",
"deprecate": "^1.0.0",
"engine.io-client": "^3.1.1",
"express": "^4.16.2",
"fast-safe-stringify": "^1.2.0",
"fastify": "^1.1.1",
"fastify-formbody": "^2.0.0",
"fastify-multipart": "^0.4.1",
"grpc": "^1.10.0",
"iterare": "0.0.8",
"json-socket": "^0.2.1",
"mqtt": "^2.16.0",
"multer": "^1.3.0",
"nats": "^0.8.4",
"opencollective": "^1.0.3",
"optional": "^0.1.4",
"pump": "^3.0.0",
"redis": "^2.7.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.0.0",
"socket.io": "^2.0.4",
"trouter": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/chai-as-promised": "0.0.31",
"@types/cors": "^2.8.3",
"@types/express": "^4.0.39",
"@types/kafka-node": "^2.0.6",
"@types/mocha": "^2.2.38",
"@types/node": "^7.0.5",
"@types/redis": "^0.12.36",
"@types/reflect-metadata": "0.0.5",
"@types/sinon": "^1.16.36",
"@types/socket.io": "^1.4.32",
"@types/ws": "^4.0.1",
"awesome-typescript-loader": "^3.0.0-beta.18",
"body-parser": "^1.17.2",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"clang-format": "^1.1.0",
"concurrently": "^3.4.0",
"conventional-changelog": "^1.1.15",
"core-js": "^2.4.1",
"coveralls": "^2.11.16",
"fastify-static": "^0.8.0",
"gulp": "^3.9.1",
"gulp-clang-format": "^1.0.23",
"gulp-clean": "^0.4.0",
"gulp-sequence": "^0.4.6",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^3.1.6",
"gulp-watch": "^4.3.11",
"husky": "^0.14.3",
"imports-loader": "^0.7.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"lerna": "^2.5.1",
"lint-staged": "^7.0.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.1.2",
"prettier": "^1.9.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"socket.io-client": "^2.0.4",
"supertest": "^3.0.0",
"ts-node": "^6.0.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/nest",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"nyc": {
"include": [
"packages/**/*.ts"
],
"exclude": [
"node_modules/",
"packages/**/*.spec.ts",
"packages/core/adapters/*.ts",
"packages/websockets/adapters/*.ts",
"packages/**/nest-*.ts",
"packages/core/errors/**/*",
"packages/common/exceptions/*.ts",
"packages/common/http/*.ts",
"packages/microservices/exceptions/",
"packages/microservices/microservices-module.ts",
"packages/core/middleware/middleware-module.ts",
"packages/common/services/logger.service.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"lint-staged": {
"packages/**/*.{ts,json}": [
"npm run format",
"git add"
]
}
}