forked from next-dev-team/nestjs-next-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.33 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
{
"name": "nestjs-master",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"engines": {
"node": ">= 14.15.3"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"format": "prettier \"**/*.ts\" --write && git status",
"lint": "eslint \"src/**/*.ts\" --fix --ignore-pattern \"**/*.spec.ts\"",
"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",
"seed": "node dist/seed",
"seed:refresh": "node dist/seed --refresh"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{ts,json}": [
"prettier --write"
]
},
"dependencies": {
"@nestjs-modules/mailer": "^1.5.1",
"@nestjs/common": "^6.7.2",
"@nestjs/config": "^0.6.1",
"@nestjs/core": "^6.7.2",
"@nestjs/graphql": "^7.7.0",
"@nestjs/jwt": "^7.2.0",
"@nestjs/mongoose": "^7.0.2",
"@nestjs/platform-express": "^6.7.2",
"@nestjs/swagger": "^4.7.12",
"@types/mongoose": "^5.10.3",
"@types/uniqid": "^5.2.0",
"apollo-server-express": "^2.19.0",
"aws-sdk": "^2.858.0",
"bcrypt": "^5.0.0",
"body-parser-graphql": "^1.1.0",
"class-transformer": "^0.3.2",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"email-existence": "^0.1.6",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"faker": "^5.4.0",
"fs": "^0.0.1-security",
"graphql": "^15.4.0",
"graphql-middleware": "^6.0.3",
"graphql-tools": "^7.0.1",
"graphql-upload": "^11.0.0",
"install": "^0.13.0",
"ioredis": "^4.22.0",
"lodash": "^4.17.21",
"mongoose": "^5.10.12",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nestjs-seeder": "^0.2.0",
"nodemailer": "^6.4.17",
"otp-generator": "^2.0.0",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"type-graphql": "^1.1.1",
"typy": "^3.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/cli": "^6.9.0",
"@nestjs/schematics": "^6.7.0",
"@nestjs/testing": "^6.7.1",
"@types/bcrypt": "^3.0.0",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.1",
"@types/ioredis": "^4.22.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.168",
"@types/passport-jwt": "^3.0.3",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-loader": "^6.1.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^4.1.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}