-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.32 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.32 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
{
"name": "zibri",
"version": "2.4.0",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.mjs",
"repository": {
"url": "https://github.com/Service-Soft/zibri"
},
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
}
},
"files": [
"./src",
"./dist",
"./README.md",
"./CONTRIBUTING.md",
"./LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "jest",
"test:ci": "jest --testPathPatterns='^(?!.*multithreading\\.service\\.test\\.ts$).*'",
"sandbox": "cd sandbox && npm run start",
"sandbox:build": "cd sandbox && npm run build",
"start": "npm-run-all -p watch:cjs watch:esm",
"watch:cjs": "tsc -p tsconfig.cjs.json --watch",
"watch:esm": "tsc -p tsconfig.esm.json --watch",
"build:prod": "npm run build && typedoc",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:post": "node post-build.mjs",
"build": "npm run build:cjs && npm run build:esm && npm run build:post",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix"
},
"keywords": [
"Zibri",
"Backend",
"Framework"
],
"author": "Tim Fabian",
"license": "MIT",
"description": "TS Backend Framework",
"peerDependencies": {
"axios": "^1.15.0",
"bcryptjs": "^3.0.3",
"bignumber.js": "^10.0.2",
"handlebars": "^4.7.9",
"hi-base32": "^0.5.1",
"jsonwebtoken": "^9.0.3",
"otpauth": "^9.5.0",
"pdfmake": "^0.2.2",
"preact": "^10.29.1",
"preact-render-to-string": "^6.6.7",
"rxjs": "^7.8.2",
"socket.io": "^4.8.3",
"ts-node": "^10.9.2",
"uuid": "^11.1.0",
"xmlbuilder2": "^4.0.3",
"cookie-parser": "^1.4.7"
},
"dependencies": {
"@fastify/busboy": "^3.2.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"glob": "^13.0.6",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.5",
"pg": "^8.20.0",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"swagger2openapi": "^7.0.8",
"systeminformation": "^5.31.5",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@jest/globals": "^30.3.0",
"@swc/core": "^1.15.24",
"@testcontainers/postgresql": "^11.14.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/nodemailer": "^8.0.0",
"@types/pdfmake": "^0.2.11",
"@types/swagger-ui-express": "^4.1.8",
"@types/swagger2openapi": "^7.0.4",
"eslint": "^9.36.0",
"eslint-config-service-soft": "^2.1.6",
"jest": "^30.3.0",
"npm-run-all": "^4.1.5",
"openapi3-ts": "^4.5.0",
"testcontainers": "^11.14.0",
"ts-jest": "^29.4.9",
"typedoc": "^0.28.19",
"typescript": "^5.9.2"
}
}