forked from acdh-oeaw/nestify-base-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.74 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
{
"name": "mongoose-nestify",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/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"
},
"dependencies": {
"@nestjs/cli": "^9.1.8",
"@nestjs/common": "^9.2.1",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.2.1",
"@nestjs/jwt": "^10.0.1",
"@nestjs/mongoose": "^9.2.1",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.2.1",
"@nestjs/swagger": "^6.1.4",
"@nestjs/testing": "^9.2.1",
"async": "^3.2.1",
"bcrypt": "^5.0.1",
"class-validator": "^0.14.0",
"cryptr": "^4.0.2",
"date-fns": "^1.30.1",
"eslint-plugin-import": "^1.11.0",
"express-restify-mongoose": "^6.1.2",
"jest": "^29.3.1",
"jimp": "^0.16.1",
"json2csv": "^5.0.6",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^6.2.2",
"mongoose-history": "^0.8.0",
"mongoose-schema-jsonschema": "^2.0.2",
"nodemailer": "^6.6.5",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"pdf2pic": "^2.1.4",
"reflect-metadata": "^0.1.13",
"request-ip": "^2.1.3",
"swagger-ui-express": "^4.1.6",
"uuid": "^3.3.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@nestjs/schematics": "^7.3.1",
"@types/bcrypt": "^3.0.1",
"@types/cryptr": "^4.0.1",
"@types/express": "^4.17.13",
"@types/jest": "25.1.1",
"@types/json-schema": "^7.0.9",
"@types/node": "^13.13.52",
"@types/passport-jwt": "^3.0.6",
"@types/request-ip": "^0.0.35",
"@types/supertest": "^2.0.11",
"@types/validator": "^10.11.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.15.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-jest": "^26.5.6",
"ts-loader": "^6.2.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.9.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}