-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.34 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.34 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
{
"name": "tracking-gps",
"version": "0.0.1",
"description": "",
"main": "index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig-build.json && tsc-alias",
"start": "node dist/index.js",
"lint": "eslint . --ext .js,.ts,.tsx --max-warnings=0",
"test": "vitest --config vitest.unit.config.ts",
"test:watch": "vitest --config vitest.unit.config.ts --watch",
"test:integration": "DOTENV_CONFIG_PATH=.env.test vitest --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts --watch",
"test:all": "CI=true npm run test && CI=true npm run test:integration",
"test:coverage": "vitest --coverage",
"test:coverage:browser": "vitest --coverage --coverage.reporter=html"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.20.0",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.1.0",
"@clickhouse/client": "^1.12.0",
"@maur025/core-commands": "^1.0.1",
"@maur025/core-common": "^1.0.1",
"@maur025/core-logger": "^1.0.0",
"@maur025/core-model-data": "^2.2.1",
"@turf/turf": "^7.2.0",
"cacheable-lookup": "^7.0.0",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"i": "^0.3.7",
"kafkajs": "^2.2.4",
"npm": "^11.5.2",
"pdfkit": "^0.17.1",
"pdfmake": "^0.2.20",
"redis": "^5.5.6",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.9.1",
"uuid": "^11.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.5.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/geojson": "^7946.0.16",
"@types/node": "^22.14.0",
"@types/pdfkit": "^0.14.0",
"@types/pdfmake": "^0.2.11",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.29.0",
"eslint-plugin-prettier": "^5.5.0",
"globals": "^16.2.0",
"http-status-codes": "^2.3.0",
"msw": "^2.10.5",
"prettier": "^3.5.3",
"supertest": "^7.1.1",
"swagger-ui-express": "^5.0.1",
"tsc-alias": "^1.8.15",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}