-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.41 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
125
126
127
128
129
130
{
"name": "ngcp-rest-api",
"version": "0.0.1",
"description": "REST API for the NGCP platform",
"productName": "NGCP REST API",
"author": "Sipwise Development Team <[email protected]>",
"license": "GPL-3.0-or-later",
"engines" : {
"node" : ">=22.13.1 < 23",
"yarn" : ">=1.22.22"
},
"engineStrict": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "yarnpkg lint && nest build",
"build:prod": "rimraf prod && webpack",
"build:dev-prod": "rimraf prod && NODE_ENV=development webpack",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "rimraf dist && NODE_ENV=development nest start --watch",
"start:debug": "NODE_ENV=development nest start --debug --watch",
"start:prod": "node prod/server",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --detectOpenHandles --forceExit --config jest-unit.config.js",
"test:watch": "jest --config jest-unit.config.js --watch",
"test:cov": "jest --config jest-unit.config.js --coverage",
"test:debug": "node --config jest-unit.config.js --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --forceExit --config jest-e2e.config.js",
"test:e2e:watch": "jest --config jest-e2e.config.js --watch",
"test:e2e:cov": "jest --config jest-e2e.config.js --coverage",
"test:e2e:debug": "node --config jest-e2e.config.js --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@nestjs-modules/ioredis": "2.0.2",
"@nestjs/common": "10.4.3",
"@nestjs/config": "3.2.3",
"@nestjs/core": "10.4.3",
"@nestjs/jwt": "10.2.0",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.4.3",
"@nestjs/schedule": "4.1.1",
"@nestjs/serve-static": "4.0.2",
"@nestjs/swagger": "7.4.2",
"@nestjs/typeorm": "10.0.2",
"@types/bcrypt": "5.0.2",
"@types/bluebird": "3.5.42",
"@types/express": "4.17.21",
"@types/jsonwebtoken": "9.0.7",
"@types/multer": "1.4.12",
"@types/node": "22.5.5",
"@types/passport-jwt": "4.0.1",
"@types/passport-local": "1.0.38",
"@types/validator": "13.12.2",
"bcrypt": "5.1.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"express": "4.21.0",
"fast-json-patch": "3.1.1",
"generate-password": "1.7.1",
"halson": "3.1.0",
"ioredis": "5.4.1",
"mysql2": "3.11.3",
"nest-winston": "1.9.7",
"nestjs-i18n": "10.4.9",
"null-loader": "4.0.1",
"passport": "0.7.0",
"passport-http": "0.3.0",
"passport-http-header-strategy": "1.1.0",
"passport-jwt": "4.0.1",
"passport-local": "1.0.0",
"reflect-metadata": "0.2.2",
"rxjs": "^7.8.1",
"sd-notify": "2.8.0",
"superagent": "10.1.0",
"swagger-ui-express": "5.0.1",
"telnet-client": "2.2.1",
"typeorm": "0.3.20",
"ua-parser-js": "1.0.39",
"uuid": "10.0.0",
"winston": "3.14.2",
"winston-syslog": "2.7.1",
"yargs": "17.7.2",
"zxcvbn-typescript": "5.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.12.0",
"@nestjs/cli": "10.4.5",
"@nestjs/schematics": "10.1.4",
"@nestjs/testing": "10.4.3",
"@types/jest": "29.5.13",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"esbuild": "0.17.19",
"esbuild-jest": "0.5.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-no-relative-import-paths": "1.5.5",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.11.0",
"ignore-loader": "0.1.2",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"jest-environment-node": "29.7.0",
"node-gyp": "10.2.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"selfsigned": "2.4.1",
"string-replace-loader": "3.1.0",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typedoc": "0.26.7",
"typescript": "5.6.2",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
},
"optionalDependencies": {},
"resolutions": {
"@nestjs/serve-static/path-to-regexp": "^1.9.0",
"**/micromatch": "^4.0.8"
}
}