forked from tkosminov/nestjs-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.68 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.68 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
{
"name": "nestjs_example",
"version": "1.0.0",
"description": "nestjs_example",
"author": "t.kosminov",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": "12.14.1"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node --files -r tsconfig-paths/register src/main.ts",
"start:debug": "DEBUG='*' nodemon --config nodemon-debug.json",
"start:debug:redis": "DEBUG=ioredis:* nodemon",
"start:dev": "nodemon",
"start:build": "NODE_ENV=development node dist/main.js",
"start:beta": "NODE_ENV=beta node dist/main.js",
"start:prod": "NODE_ENV=prod node dist/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint-fix": "npm run lint -- --fix",
"typeorm:cli": "ts-node --files -r tsconfig-paths/register ./node_modules/typeorm/cli -f ./src/database/database-ormconfig.cli",
"db:migration:create": "npm run typeorm:cli -- migration:create -d src/database/migrations -n",
"db:migration:run": "npm run typeorm:cli -- migration:run",
"db:schema:sync": "npm run typeorm:cli -- schema:sync"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@graphql-tools/delegate": "^7.1.5",
"@graphql-tools/schema": "^7.1.5",
"@graphql-tools/stitch": "^7.5.3",
"@graphql-tools/utils": "^7.10.0",
"@graphql-tools/wrap": "^7.0.8",
"@nestjs/axios": "^0.0.1",
"@nestjs/common": "8.0.6",
"@nestjs/core": "^8.0.6",
"@nestjs/graphql": "^8.0.2",
"@nestjs/platform-express": "^8.0.6",
"@nestjs/platform-socket.io": "^8.0.6",
"@nestjs/swagger": "^5.0.9",
"@nestjs/testing": "^8.0.6",
"@nestjs/typeorm": "^8.0.2",
"@nestjs/websockets": "^8.0.6",
"amqp-connection-manager": "^3.2.2",
"amqplib": "^0.8.0",
"apollo-server-express": "^2.25.2",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"config": "^3.3.6",
"cookie-parser": "^1.4.5",
"cross-fetch": "^3.1.4",
"dataloader": "^2.0.0",
"graphql": "^15.5.1",
"hasha": "^5.2.2",
"helmet": "^4.6.0",
"ioredis": "^4.27.7",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"query-string": "^7.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.3.0",
"socket.io-redis": "^6.1.1",
"swagger-ui-express": "^4.1.6",
"transliteration": "^2.2.0",
"typeorm": "^0.2.36",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/amqp-connection-manager": "^2.0.12",
"@types/amqplib": "^0.8.1",
"@types/bcryptjs": "^2.4.2",
"@types/config": "0.0.39",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/helmet": "4.0.0",
"@types/ioredis": "^4.26.6",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.4.12",
"@types/pg": "^8.6.1",
"@types/query-string": "^6.3.0",
"@types/socket.io": "^3.0.2",
"@types/socket.io-redis": "^3.0.0",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"supertest": "^6.1.4",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}