-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.41 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
{
"name": "user-office-factory",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/UserOfficeProject/user-office-factory.git"
},
"private": true,
"author": "SWAP",
"license": "ISC",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"test:watch": "jest --watchAll --runInBand --detectOpenHandles",
"build": "rm -rf ./build && tsc",
"prod": "npm run build && env NODE_ENV=production node ./build/index.js",
"dev": "ts-node-dev --rs --trace-warnings --respawn --exit-child ./src/index.ts",
"dev:docker": "npm install && ts-node-dev --inspect=0.0.0.0:9230 --rs --respawn ./src/index.ts",
"debug": "ts-node-dev --rs --trace-warnings --inspect --respawn ./src/index.ts",
"lint": "tsc --noEmit && eslint ./src --ext .js,.ts --quiet",
"lint:all": "tsc --noEmit && eslint ./src --ext .js,.ts",
"lint:fix": "tsc --noEmit && eslint ./src --ext .js,.ts --fix --quiet",
"prepare": "husky",
"prettier": "prettier package.json --check --write"
},
"dependencies": {
"@opentelemetry/exporter-logs-otlp-http": "^0.219.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.218.0",
"@opentelemetry/host-metrics": "^0.38.3",
"@opentelemetry/instrumentation-http": "^0.218.0",
"@opentelemetry/instrumentation-knex": "^0.62.0",
"@opentelemetry/instrumentation-winston": "^0.62.0",
"@opentelemetry/resource-detector-container": "^0.8.8",
"@opentelemetry/sdk-node": "^0.218.0",
"@opentelemetry/sdk-trace-node": "^2.7.1",
"@opentelemetry/winston-transport": "^0.28.0",
"@user-office-software/duo-logger": "^2.3.2",
"archiver": "^7.0.1",
"await-to-js": "^3.0.0",
"canvas": "^3.2.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"debug": "^4.4.3",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"gm": "^1.25.1",
"handlebars": "^4.7.8",
"http-errors": "^2.0.1",
"jsbarcode": "^3.12.3",
"knex": "^3.2.10",
"morgan": "^1.11.0",
"muhammara": "^6.0.4",
"pg": "^8.21.0",
"pg-large-object": "^2.0.0",
"puppeteer": "^24.41.0",
"qrcode": "^1.5.4",
"reflect-metadata": "^0.2.1",
"tsyringe": "^4.8.0",
"xlsx": "^0.18.5",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/gm": "^1.25.4",
"@types/http-errors": "^2.0.4",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/morgan": "^1.9.9",
"@types/node": "^25.9.4",
"@types/pg": "^8.20.0",
"@types/pg-large-object": "^2.0.7",
"@types/qrcode": "^1.5.6",
"@types/supertest": "^7.2.0",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.57.2",
"adm-zip": "^0.5.17",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^29.15.3",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.6",
"jest": "^30.3.0",
"lint-staged": "^16.3.1",
"lodash": "^4.18.1",
"path": "^0.12.7",
"prettier": "3.8.3",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.3"
},
"engines": {
"npm": ">=10.9.2",
"node": ">=22.0.0"
}
}