-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "insurance-backend",
"version": "1.0.0",
"author": "Eric Lara",
"description": "Backend in charge of serve insurance & clients information",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc --pretty --alwaysStrict",
"format": "prettier --write \"**/*.ts\"",
"lint": "tslint --project tsconfig.json -c tslint.json src/**/**/*.ts",
"start:dev": "nodemon",
"prestart": "npm run lint && npm run build",
"start": "node -r dotenv/config dist/main.js",
"precommit": "pretty-quick --staged",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^4.6.6",
"@nestjs/core": "^4.6.6",
"@nestjs/microservices": "^4.6.6",
"@nestjs/testing": "^4.6.6",
"@nestjs/websockets": "^4.6.6",
"body-parser": "^1.18.2",
"class-validator": "^0.8.5",
"compression": "^1.7.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"helmet": "^3.12.0",
"jsonwebtoken": "^8.2.1",
"lodash.filter": "^4.6.0",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^5.5.6",
"typescript": "^2.6.2",
"winston": "^2.4.2"
},
"devDependencies": {
"@types/express": "^4.0.39",
"@types/jest": "^21.1.8",
"@types/node": "^9.3.0",
"@types/supertest": "^2.0.4",
"husky": "^0.14.3",
"jest": "^21.2.1",
"nodemon": "^1.14.1",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"tslint": "5.3.2",
"tslint-eslint-rules": "^5.1.0",
"tslint-no-unused-expression-chai": "^0.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}