-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.01 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
{
"name": "dim-mediator-api",
"version": "1.0.0",
"description": "DIMMediator System Restful API",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"build:travis": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "node --max_old_space_size=5500 ./node_modules/.bin/nodemon",
"start:debug": "node --max_old_space_size=2500 ./node_modules/.bin/nodemon --config nodemon-debug.json",
"migration:run": "ts-node node_modules/.bin/typeorm migration:run -c development",
"migration:revert": "ts-node node_modules/.bin/typeorm migration:revert",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli -f ormconfig.json",
"prestart:prod": "rimraf dist && npx run build",
"start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"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",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@iapps/utils": "^1.0.1-alpha.5",
"@icodebible/utils": "^1.5.7",
"@nestjs/common": "^7.3.1",
"@nestjs/core": "^7.1.0",
"@nestjs/microservices": "7.1.2",
"@nestjs/passport": "7.0.0",
"@nestjs/platform-express": "^7.3.1",
"@nestjs/schedule": "^0.4.0",
"@nestjs/swagger": "^4.5.9",
"@nestjs/typeorm": "7.1.0",
"@nestjs/websockets": "7.3.1",
"@tsed/common": "^5.57.2",
"@tsed/core": "5.60.2",
"@tsed/di": "^5.54.3",
"@tsed/typeorm": "^5.60.2",
"@types/pg": "^7.14.2",
"apollo-server-express": "^2.14.2",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cron": "^1.8.2",
"csurf": "^1.11.0",
"date-fns": "2.14.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"extract-zip": "^2.0.0",
"handlebars": "^4.7.6",
"helmet": "^3.22.0",
"lodash": "^4.17.19",
"method-override": "^3.0.0",
"nestjs-typeorm-paginate": "^2.0.3",
"node-pre-gyp": "^0.14.0",
"node-stream-zip": "^1.11.2",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"pg": "^8.2.1",
"reflect-metadata": "^0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.5.5",
"sqlite3": "^4.2.0",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.25",
"uid": "^1.0.0",
"unzipper": "^0.10.11",
"uuid": "^8.1.0",
"yallist": "^4.0.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@nestjs/testing": "7.3.1",
"@types/cron": "^1.7.2",
"@types/express": "4.17.6",
"@types/jest": "25.2.3",
"@types/node": "14.0.11",
"@types/supertest": "2.0.9",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"graphql-tools": "^6.0.14",
"husky": "^4.2.5",
"jest": "26.0.1",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"supertest": "4.0.2",
"ts-jest": "26.1.1",
"ts-node": "8.10.2",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.2",
"typescript": "3.9.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:generate": "npx run typeorm migration:generate -n",
"migration:create": "npx run typeorm migration:create -n",
"migration:run": "npx run typeorm migration:run"
}