-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.83 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
{
"name": "nestjs-template",
"version": "0.3.0",
"description": "NestJS Template",
"author": "proscom.ru",
"license": "MIT",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\"",
"prettify": "prettier --write \"src/**/*.ts\"",
"prepare": "is-ci || husky install",
"prebuild": "rimraf dist",
"mock": "./mock.sh",
"build": "nest build --path tsconfig.build.json",
"build:diagram": "cross-env TYPEORM_BASE_DIRECTORY=src ts-node src/cli/plantuml.ts",
"api": "nest start api --",
"api:dev": "nest start api --debug 9250 --watch --",
"api:prod": "cross-env NODE_ENV=production node dist/api/api --",
"cli": "nest start cli --",
"cli:dev": "nest start cli --debug 9251 --watch --",
"cli:prod": "cross-env NODE_ENV=production node dist/cli/cli --",
"worker": "nest start worker --",
"worker:dev": "nest start worker --debug 9252 --watch --",
"worker:prod": "cross-env NODE_ENV=production node dist/worker/worker --",
"scheduler": "nest start scheduler --",
"scheduler:dev": "nest start scheduler --debug 9253 --watch --",
"scheduler:prod": "cross-env NODE_ENV=production node dist/scheduler/scheduler --",
"typeorm": "cross-env TYPEORM_BASE_DIRECTORY=src node -r ts-node/register ./node_modules/typeorm/cli.js -f src/config/ormconfig.ts",
"typeorm:prod": "cross-env NODE_ENV=production node ./node_modules/typeorm/cli.js -f dist/config/ormconfig.js"
},
"dependencies": {
"@nestjs/bull": "0.4.2",
"@nestjs/common": "8.2.3",
"@nestjs/core": "8.2.3",
"@nestjs/graphql": "8.0.2",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "8.1.0",
"@nestjs/platform-express": "8.2.3",
"@nestjs/schedule": "1.0.2",
"@nestjs/swagger": "5.2.0",
"@nestjs/typeorm": "8.0.3",
"@proscom/graphql-faker": "^2.0.0-rc.23",
"@proscom/ui-utils": "^0.1.18",
"@types/bull": "^3.15.5",
"@types/pino-http": "^5.8.1",
"apollo-server-express": "2.21.0",
"bcrypt": "^5.0.0",
"bull": "^3.29.2",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"dataloader": "^2.0.0",
"date-fns": "^2.25.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"eslint-plugin-unused-imports": "^1.1.5",
"graphql-fields-list": "^2.2.4",
"lodash": "^4.17.21",
"nanoid": "^3.1.29",
"nest-module-redis": "^0.1.0",
"nestjs-command": "^3.0.2",
"nestjs-pino": "^2.5.0",
"passport": "^0.5.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"pg": "^8.7.1",
"pino": "^7.6.5",
"pino-http": "^6.6.0",
"pino-pretty": "^7.5.1",
"pino-tee": "^0.3.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.3.1",
"typeorm": "^0.2.41",
"typeorm-uml": "^1.6.4",
"yargs": "^17.3.1"
},
"devDependencies": {
"@nestjs/cli": "^8.1.2",
"@nestjs/schematics": "^8.0.3",
"@nestjs/testing": "^8.0.10",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.3",
"@types/passport": "^1.0.7",
"@types/yargs": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"*.{html,scss,css,json}": [
"prettier --write"
]
}
}