-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.28 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
{
"name": "project-backend",
"version": "0.0.3",
"description": "Project backend",
"author": "cojack <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "./scripts/after_install.sh",
"prebuild": "rm -rf dist",
"build": "tsc -p ./tsconfig.build.json",
"cli": "ts-node src/cli.ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prestart": "docker-compose up -d",
"start": "ts-node src/main.ts",
"start:prod": "node dist/main",
"lint": "eslint --ext .ts --fix src/**",
"lint:dry": "eslint --ext .ts --fix-dry-run src/**",
"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",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "[email protected]:cojack/project-backend.git"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@nestjs/common": "^6.11.11",
"@nestjs/core": "^6.11.11",
"@nestjs/cqrs": "^6.1.0",
"@nestjs/passport": "^6.2.0",
"@nestjs/platform-express": "^6.11.11",
"@nestjs/swagger": "^4.3.2",
"@nestjs/typeorm": "^6.3.3",
"@nestjsx/crud": "^4.4.1",
"@nestjsx/crud-typeorm": "^4.4.1",
"accesscontrol": "^2.2.1",
"async-exit-hook": "^2.0.1",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"cookie-parser": "^1.4.4",
"dotenv-extended": "^2.7.1",
"helmet": "^3.21.3",
"jsonwebtoken": "^9.0.0",
"luxon": "^1.22.0",
"nestjs-command": "^1.3.0",
"nodemailer": "^6.4.4",
"passport": "^0.4.1",
"passport-cookie": "^1.0.6",
"passport-custom": "^1.1.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.18.2",
"qs-middleware": "^1.0.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"ssm-expose": "0.0.3",
"swagger-stats": "^0.95.16",
"swagger-ui-express": "^4.1.3",
"twing": "^4.0.3",
"typeorm": "^0.2.24",
"uuid": "^7.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@nestjs/testing": "^6.11.11",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/nodemailer": "^6.4.0",
"@types/passport-strategy": "^0.2.35",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"admin-lte": "^3.0.2",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typeorm-fixtures-cli": "^1.5.0",
"typescript": "^3.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}