-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
130 lines (130 loc) · 4.68 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": "os2iot-backend",
"version": "0.0.1",
"description": "",
"author": "OS2IoT",
"private": true,
"license": "Mozilla Public License Version 2.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"generate-migration": "npm run typeorm migration:generate -n",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prestart": "npm run run-migrations",
"prestart:debug": "npm run run-migrations",
"prestart:dev": "npm run run-migrations",
"prestart:prod": "npm run run-migrations",
"run-migrations": "npm run typeorm migration:run",
"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 ./jest-e2e.js --detectOpenHandles --colors",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d \"src/repositories/os2iot.repository.ts\"",
"typeorm-e2e": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config ./ormconfig-e2e.json"
},
"dependencies": {
"@chirpstack/chirpstack-api": "4.6.0",
"@grpc/grpc-js": "^1.9.13",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^9.1.2",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.4.3",
"@nestjs/jwt": "^9.0.0",
"@nestjs/mapped-types": "^1.2.2",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.1.2",
"@nestjs/schedule": "^2.1.0",
"@nestjs/swagger": "^6.1.2",
"@nestjs/typeorm": "^9.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/geojson": "^7946.0.13",
"@types/kafkajs": "^1.9.0",
"@types/passport-saml": "^1.1.3",
"@types/pem": "^1.9.6",
"@types/uuid": "^8.3.0",
"@types/ws": "^8.5.3",
"@types/xml2js": "^0.4.14",
"ajv": "^6.12.6",
"axios": "^1.6.1",
"axios-cache-adapter": "^2.7.3",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"cache-manager": "^4.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"kafkajs": "^2.2.4",
"lodash": "^4.17.20",
"mqtt": "^4.3.7",
"njwt": "^1.0.0",
"nodemailer": "^6.7.2",
"passport": "^0.6.0",
"passport-headerapikey": "^1.2.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-saml": "^3.2.4",
"pem": "^1.14.7",
"pg": "^8.5.1",
"protobufjs": "^6.11.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.7",
"swagger-ui-express": "^4.1.5",
"typeorm": "^0.3.10",
"uuid": "^8.3.2",
"wait-for-expect": "^3.0.2"
},
"devDependencies": {
"@nestjs/cli": "^9.3.0",
"@nestjs/testing": "^9.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.33",
"@types/cache-manager": "^4.0.1",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cron": "^1.7.2",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.9",
"@types/geojson": "^7946.0.13",
"@types/kafkajs": "^1.9.0",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.14",
"@types/nodemailer": "^6.4.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/passport-saml": "^1.1.2",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.7.1",
"@types/ws": "^8.5.3",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^7.0.0",
"jest": "^29.7.0",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"overrides": {
"@babel/traverse": "^7.23.2",
"webpack": "^5.89.0",
"axios": "^1.6.1",
"xml2js": "^0.6.2",
"jsonwebtoken": "^9.0.0",
"debug": "^4.3.4",
"y18n": "6.0.0-alpha.0"
}
}