forked from OS2iot/OS2iot-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.89 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.89 KB
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
{
"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.14.0",
"@nestjs/axios": "^4.0.1",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.1.6",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.6",
"@nestjs/jwt": "^11.0.0",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.6",
"@nestjs/schedule": "^6.0.1",
"@nestjs/swagger": "^11.2.0",
"@nestjs/typeorm": "^11.0.0",
"@node-saml/passport-saml": "^5.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/geojson": "^7946.0.13",
"@types/pem": "^1.14.4",
"@types/ws": "^8.18.1",
"@types/xml2js": "^0.4.14",
"ajv": "6.12.6",
"axios": "^1.12.2",
"axios-cache-interceptor": "^1.8.3",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.18",
"helmet": "^8.1.0",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"mqtt": "^5.14.1",
"njwt": "^2.0.1",
"nodemailer": "^7.0.9",
"passport": "^0.7.0",
"passport-headerapikey": "^1.2.2",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pem": "^1.14.8",
"pg": "^8.16.3",
"protobufjs": "^7.5.4",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.2",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.27",
"uuid": "^13.0.0",
"wait-for-expect": "^3.0.2"
},
"devDependencies": {
"@nestjs/cli": "^11.0.10",
"@nestjs/testing": "^11.1.6",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.42",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/cron": "^2.4.3",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.9",
"@types/geojson": "^7946.0.13",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.9.2",
"@types/nodemailer": "^6.4.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@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": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"prettier": "^2.2.1",
"supertest": "^7.1.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.4.5"
}
}