-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
109 lines (109 loc) · 3.34 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
{
"name": "nest-typescript-starter",
"version": "0.0.1",
"description": "NestJS API starter",
"author": "Joshua Wiens <d3viant0ne>",
"license": "Apache-2.0",
"main": "./src/server.ts",
"scripts": {
"start": "npm run serve:dev",
"build": "npm run lint && npm run clean:dist && npm run transpile",
"build:dist": "npm run clean:dist && npm run transpile",
"clean": "npm run clean:dist",
"clean:all": "npm run clean:coverage && npm run clean:dist",
"clean:coverage": "rimraf './coverage'",
"clean:dist": "rimraf './dist'",
"serve:dev": "nodemon --watch src --watch .env",
"serve:dist": "node dist/server.js",
"test": "cross-env NODE_ENV=test jest --runInBand --forceExit",
"test:verbose": "npm run test -- --verbose",
"test:coverage": "npm run clean:coverage && npm run test -- --coverage",
"report-codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"lint": "tslint --type-check --project tsconfig.json -c ./tslint.json 'src/**/*.ts' --exclude 'src/**/*.d.ts' --exclude 'src/**/*.spec.ts' --exclude 'src/**/*.spec-data.ts'",
"certs": "bash ./.ssl/generateLocalCerts.sh 'localhost'",
"release": "standard-version",
"security": "nsp check",
"transpile": "tsc"
},
"dependencies": {
"@nestjs/common": "^4.4.2",
"@nestjs/core": "^4.4.2",
"@nestjs/microservices": "^4.4.1",
"@nestjs/testing": "^4.4.1",
"@nestjs/websockets": "^4.4.1",
"body-parser": "^1.18.1",
"chalk": "2.1.0",
"compression": "^1.7.0",
"class-transformer": "^0.1.7",
"class-validator": "^0.7.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express-jwt": "^5.3.0",
"express-jwt-authz": "^1.0.0",
"helmet": "^3.8.1",
"jwks-rsa": "^1.2.1",
"mongoose": "^4.13.4",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.2",
"tslib": "^1.7.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.4",
"@types/chalk": "^0.4.31",
"@types/compression": "0.0.33",
"@types/cors": "^2.8.1",
"@types/dotenv": "^4.0.0",
"@types/express-jwt": "0.0.37",
"@types/helmet": "0.0.36",
"@types/jest": "^21.1.2",
"@types/mongoose": "^4.7.24",
"@types/node": "^8.0.19",
"codeclimate-test-reporter": "^0.5.0",
"cross-env": "^5.0.4",
"jest": "^21.2.1",
"@easymetrics/mockgoose": "^7.3.4",
"mongoose-data-seed": "^1.0.2",
"nodemon": "^1.11.0",
"nsp": "^2.7.0",
"rimraf": "^2.6.1",
"selfsigned": "^1.10.1",
"standard-version": "^4.2.0",
"ts-jest": "^21.1.1",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "2.5.3"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.spec.json"
}
},
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/src/.*\\.spec)\\.ts",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./setupJest.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3viant0ne/nest-typescript-starter.git"
},
"bugs": {
"url": "https://github.com/d3viant0ne/nest-typescript-starter/issues"
},
"homepage": "https://github.com/d3viant0ne/nest-typescript-starter#readme",
"keywords": [
"nestjs",
"nest",
"typescript",
"jest"
]
}