-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.07 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
{
"name": "real-estate-api",
"private": true,
"version": "0.0.2",
"description": "Real Estate App",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "concurrently --handle-input \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ",
"start:debug": "nodemon --config nodemon-debug.json",
"start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"tslint:fix": "prettier-tslint fix '**/*.ts'",
"tslint:check": "tslint-config-prettier-check ./tslint.json"
},
"dependencies": {
"@nest-modules/mailer": "^1.1.3",
"@nestjs/cli": "^6.5.0",
"@nestjs/common": "^6.0.4",
"@nestjs/core": "^6.0.4",
"@nestjs/jwt": "^6.1.1",
"@nestjs/microservices": "^6.0.4",
"@nestjs/passport": "^6.1.0",
"@nestjs/platform-express": "^6.0.4",
"@nestjs/swagger": "^3.0.2",
"@nestjs/websockets": "^6.0.4",
"@types/bcrypt": "^3.0.0",
"aws-sdk": "^2.814.0",
"bcrypt": "^5.0.0",
"dotenv": "^8.1.0",
"fastify-swagger": "^2.4.0",
"moment": "^2.29.2",
"multer-s3": "^2.9.0",
"mysql2": "^1.6.5",
"nest-cli": "^0.0.5",
"nodemailer": "^6.6.1",
"nodemailer-direct-transport": "^3.3.2",
"passport-jwt": "^4.0.0",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"react-moment": "^0.9.2",
"reflect-metadata": "0.1.13",
"rimraf": "2.6.3",
"rxjs": "6.4.0",
"sequelize": "^5.9.1",
"sequelize-typescript": "^0.6.11",
"swagger-ui-express": "^4.0.6"
},
"devDependencies": {
"@nestjs/testing": "6.1.1",
"@types/express": "4.16.1",
"@types/jest": "24.0.11",
"@types/node": "11.13.4",
"@types/sequelize": "^4.28.3",
"@types/supertest": "2.0.7",
"concurrently": "^4.1.0",
"husky": "^3.0.0",
"jest": "24.7.1",
"lint-staged": "^9.0.1",
"nodemon": "1.18.11",
"prettier": "^1.17.0",
"prettier-tslint": "^0.4.2",
"supertest": "4.0.2",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "3.4.3",
"wait-on": "^3.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"echo \"Running pre-commit scripts\"",
"npm run tslint:fix"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}