-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.91 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
{
"name": "7code-nest-boilerplate",
"version": "0.0.1",
"description": "Internal 7code boilerplate for projects using Nest.js framework",
"author": "7code",
"license": "MIT",
"engines": {
"node": "^8 || ^10 || ^12"
},
"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 --passWithNoTests",
"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",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/database/config/local.ts",
"typeorm:test": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/database/config/test.ts",
"migration:generate": "npm run typeorm -- migration:generate --name",
"migration:create": "npm run typeorm -- migration:create --name",
"migration:sync": "npm run typeorm schema:sync && npm run typeorm:test schema:sync",
"migration:run": "npm run typeorm migration:run && npm run typeorm:test migration:run",
"migration:schema:update": "npm run typeorm migration:revert && npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert && npm run typeorm:test migration:revert"
},
"dependencies": {
"@nestjs/common": "^7.5.2",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.5.2",
"@nestjs/jwt": "^7.1.0",
"@nestjs/passport": "^7.1.2",
"@nestjs/platform-express": "^7.5.2",
"@nestjs/platform-socket.io": "^7.5.2",
"@nestjs/serve-static": "^2.1.3",
"@nestjs/swagger": "^4.7.4",
"@nestjs/typeorm": "^7.1.4",
"@nestjs/websockets": "^7.5.2",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cookie-session": "^1.4.0",
"eslint-plugin-jsdoc": "^30.7.8",
"moment": "^2.29.1",
"nest-winston": "^1.4.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^8.5.1",
"pre-commit": "^1.2.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"slug": "^3.5.1",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.28",
"winston": "^3.3.3"
},
"devDependencies": {
"@nestjs/cli": "^7.5.3",
"@nestjs/schematics": "^7.2.2",
"@nestjs/testing": "^7.5.2",
"@types/cookie-session": "^2.0.41",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-jwt": "0.0.42",
"@types/express-serve-static-core": "^4.17.13",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/slug": "^0.9.1",
"@types/socket.io": "^2.1.11",
"@types/supertest": "^2.0.10",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
},
"pre-commit": [
"lint",
"test"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}