-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 4.63 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "nest-prisma-graphql",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "cd dist && node src/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"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",
"prisma:g": "node node_modules/prisma/build/index.js generate",
"prisma:p": "node node_modules/prisma/build/index.js db push",
"prisma:i": "node node_modules/prisma/build/index.js db pull",
"prisma:s": "npx prisma studio",
"seed": "npx prisma db seed",
"format:g": "npx prettier ./@generated --write",
"format:s": "npx prettier ./services --write",
"regen": "rm -rf @generated && npm run prisma:g && npm run format:g",
"dev": "ts-node-dev src/main.ts",
"batch": "ts-node-dev tools/index.ts"
},
"dependencies": {
"@nestjs/apollo": "^10.0.6",
"@nestjs/common": "^8.4.0",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.4.0",
"@nestjs/graphql": "^10.0.6",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/platform-ws": "^8.4.5",
"@nestjs/schedule": "^1.1.0",
"@nestjs/schematics": "^8.0.0",
"@paljs/plugins": "^4.0.16",
"amqplib": "^0.10.0",
"apollo-server-express": "^3.6.3",
"apollo-server-plugin-base": "^3.5.1",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"concat-files": "^0.1.1",
"cuid": "^2.1.8",
"ejs": "^3.1.7",
"formidable": "^2.0.1",
"graphql": "^15.8.0",
"graphql-middleware": "^6.1.29",
"graphql-query-complexity": "^0.11.0",
"graphql-scalars": "^1.15.0",
"graphql-type-json": "^0.3.2",
"ioredis": "^5.0.5",
"js-sha512": "^0.8.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"log4js": "^6.4.5",
"moment": "^2.29.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prisma-graphql-type-decimal": "^1.0.0",
"prisma-nestjs-graphql": "^15.2.2",
"redlock": "^5.0.0-beta.2",
"reflect-metadata": "^0.1.13",
"request-ip": "^2.1.3",
"rimraf": "^3.0.2",
"rxjs": "^7.5.4",
"source-map-support": "^0.5.20"
},
"devDependencies": {
"@mrleebo/prisma-ast": "^0.3.1",
"@nestjs/cli": "^8.0.0",
"@nestjs/swagger": "^5.2.1",
"@nestjs/testing": "^8.0.0",
"@prisma/client": "^4.0.0",
"@types/amqplib": "^0.8.2",
"@types/bcrypt": "^5.0.0",
"@types/cache-manager": "^3.4.3",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/inflection": "^1.13.0",
"@types/jest": "27.0.2",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
"@types/node": "^16.0.0",
"@types/passport-local": "^1.0.34",
"@types/plur": "^3.1.0",
"@types/request-ip": "^0.0.37",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"inflection": "^1.13.2",
"jest": "^27.2.5",
"prettier": "^2.5.1",
"prisma": "^4.0.0",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.3.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.7.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}