-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.65 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
{
"name": "app-backend",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"dev": "nest start --watch",
"buildEmailTemplates": "mjml ./email-templates/*.mjml -o ./email-templates",
"lint": "eslint \"src/**/*.ts\"",
"test:unit": "jest",
"test:e2e": "jest --config=./jest.e2e.config.js --runInBand",
"db": "mikro-orm",
"script:createAdmin": "node ./dist/scripts/create-admin",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.ts": [
"bash -c tsc --noEmit",
"eslint --fix"
]
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm-cli.config.ts"
]
},
"dependencies": {
"@mikro-orm/core": "^4.5.7",
"@mikro-orm/migrations": "^4.5.7",
"@mikro-orm/nestjs": "^4.3.0",
"@mikro-orm/postgresql": "^4.5.7",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/swagger": "^5.1.4",
"argon2": "^0.27.2",
"aws-sdk": "^2.969.0",
"axios": "^0.24.0",
"class-transformer": "^0.5.0",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"handlebars": "^4.7.7",
"html-to-text": "^8.0.0",
"nodemailer": "^6.6.3",
"pino": "^7.1.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"source-map-support": "^0.5.19",
"swagger-ui-express": "^4.1.6",
"yargs": "^17.1.1"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@jest/types": "^27.0.6",
"@mikro-orm/cli": "^4.5.7",
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.8",
"@types/html-to-text": "^8.0.1",
"@types/jest": "^27.0.0",
"@types/node": "^14.17.0",
"@types/nodemailer": "^6.4.4",
"@types/readline-sync": "^1.4.4",
"@types/supertest": "^2.0.0",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^40.0.0",
"faker": "^5.5.3",
"husky": "^7.0.0",
"jest": "^27.0.0",
"jest-environment-node": "^27.0.0",
"lint-staged": "^12.1.0",
"mjml": "^4.10.0",
"prettier": "^2.3.0",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.0",
"supertest": "^6.1.0",
"ts-jest": "^27.0.0",
"ts-loader": "^9.2.0",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.0",
"typescript": "^4.5.0"
}
}