forked from unlight/nest-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 5.17 KB
/
package.json
File metadata and controls
149 lines (149 loc) · 5.17 KB
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
{
"name": "nest-typescript-starter",
"private": true,
"version": "0.0.0-dev",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"engines": {
"node": ">=8.9 <11"
},
"scripts": {
"start": "tsc && npm run app:bin",
"dev:nd": "node-dev --no-deps -r tsconfig-paths/register -r ts-node/register/transpile-only --inspect src/server.ts --program=tsnode",
"dev:n": "ts-node-dev --no-deps -r tsconfig-paths/register --transpileOnly src/server.ts --program=tsnode",
"dev": "npm run dev:w",
"dev:w": "run-p \"webpack -- --watch {@}\" \"app:bin -- --program=webpack\"",
"dev:wd": "run-p \"webpack -- --watch {@}\" \"app:bin:inspect -- --program=webpack\" --",
"predev:w": "rimraf app_bin",
"webpack": "webpack",
"app:bin": "just-wait -t 45 -p \"app_bin/server.js\" && node app_bin/server.js",
"app:bin:inspect": "just-wait -p \"app_bin/server.js\" && node --inspect app_bin/server.js",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "mocha -r tsconfig-paths/register -r ts-node/register/transpile-only -t 15s src/**/*.spec.ts --node_env=test",
"test:w": "mocha -r tsconfig-paths/register -r ts-node/register/transpile-only --reporter min -t 15s --watch-extensions ts --watch src/**/*.spec.ts --node_env=test",
"test:cov": "nyc mocha -r tsconfig-paths/register -r ts-node/register/transpile-only -t 15s src/**/*.spec.ts --node_env=test",
"test:d": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-extensions ts --watch src/**/*.spec.ts --node_env=test",
"test:m": "stryker run",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --strictNullChecks --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals",
"tsclint:w": "npm run tsclint -- --watch",
"eslint": "gulp eslint",
"eslint:fix": "eslint src --ext \"ts\" --fix",
"eslint:w": "gulp eslint:w",
"lint:w": "run-p tsclint:w eslint:w",
"dev:update": "updtr --out --save exact --to latest --test \"npm test && npm run test:m\""
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"**/*.d.ts",
"src/**/*.spec.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"@nestjs/common": "5.3.11",
"@nestjs/core": "5.3.11",
"@nestjs/graphql": "5.4.0",
"@nestjs/jwt": "0.2.0",
"@nestjs/microservices": "5.3.11",
"@nestjs/swagger": "2.5.1",
"@nestjs/testing": "5.3.11",
"@nestjs/typeorm": "5.2.2",
"@nestjs/websockets": "5.3.11",
"@types/convict": "4.2.0",
"apollo-server-express": "2.1.0",
"body-parser": "1.18.3",
"class-transformer": "0.1.9",
"class-validator": "0.9.1",
"convict": "4.4.0",
"dataloader": "1.4.0",
"graphql": "14.0.2",
"graphql-tools": "4.0.0",
"loud-rejection": "1.6.0",
"mongodb": "3.1.8",
"reflect-metadata": "0.1.12",
"rxjs": "6.3.3",
"rxjs-compat": "6.3.3",
"sqlite3": "4.0.2",
"ts-node": "7.0.1",
"tslib": "1.9.3",
"typeorm": "0.2.7",
"typescript": "3.1.2"
},
"devDependencies": {
"@types/express": "4.16.0",
"@types/graphql": "14.0.2",
"@types/gulp": "4.0.5",
"@types/lodash": "4.14.117",
"@types/mocha": "5.2.5",
"@types/node": "10.11.7",
"@types/node-notifier": "0.0.28",
"@types/rimraf": "2.0.2",
"@types/supertest": "2.0.6",
"@types/webpack": "4.4.16",
"@types/webpack-env": "1.13.6",
"@types/yargs": "12.0.1",
"eslint": "5.6.1",
"eslint-import-resolver-node": "0.3.2",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-nestjs": "1.2.3",
"eslint-plugin-tslint": "3.0.0",
"eslint-plugin-typescript": "0.12.0",
"eslint-plugin-unicorn": "6.0.1",
"eslint-plugin-wix-editor": "2.0.0",
"gulp": "4.0.0",
"gulp-eslint": "5.0.0",
"gulp-if": "2.0.2",
"gulp-ignore": "2.0.2",
"gulp-load-plugins": "1.5.0",
"gulp-memory-cache": "0.3.0",
"json-socket": "0.3.0",
"just-wait": "1.0.11",
"mocha": "5.2.0",
"node-dev": "3.1.3",
"node-notifier": "5.2.1",
"npm-run-all": "4.1.3",
"nyc": "13.0.1",
"rimraf": "2.6.2",
"source-map-support": "0.5.9",
"stryker": "0.29.5",
"stryker-api": "0.21.2",
"stryker-html-reporter": "0.16.4",
"stryker-mocha-framework": "0.12.3",
"stryker-mocha-runner": "0.14.3",
"stryker-typescript": "0.15.0",
"supertest": "3.3.0",
"ts-loader": "5.2.1",
"ts-node-dev": "1.0.0-pre.30",
"tsconfig-paths": "3.6.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"tslint": "5.11.0",
"tslint-clean-code": "0.2.7",
"tslint-microsoft-contrib": "5.2.1",
"tslint-sonarts": "1.8.0",
"typescript-eslint-parser": "20.0.0",
"universal-mock": "1.1.0",
"updtr": "3.1.0",
"webpack": "4.20.2",
"webpack-cli": "3.1.2",
"webpack-loader-helper": "1.0.0",
"webpack-node-externals": "1.7.2",
"webpack-notifier": "1.7.0"
}
}