mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "core",
|
|
"version": "2.7.0",
|
|
"description": "Gradido Core Code, High-Level Shared Code, with dependencies on other modules",
|
|
"main": "./build/index.js",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./build/index.js",
|
|
"require": "./build/index.js"
|
|
}
|
|
},
|
|
"repository": "https://github.com/gradido/gradido/core",
|
|
"author": "Gradido Academy - https://www.gradido.net",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "esbuild src/index.ts --outdir=build --platform=node --target=node18.20.7 --bundle --packages=external",
|
|
"build:bun": "bun build src/index.ts --outdir=build --target=bun --packages=external",
|
|
"test": "bun test",
|
|
"test:debug": "bun test --inspect-brk",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome check --error-on-warnings .",
|
|
"lint:fix": "biome check --error-on-warnings . --write",
|
|
"clear": "rm -rf node_modules && rm -rf build && rm -rf .turbo"
|
|
},
|
|
"dependencies": {
|
|
"database": "*",
|
|
"esbuild": "^0.25.2",
|
|
"i18n": "^0.15.1",
|
|
"joi": "^17.13.3",
|
|
"jose": "^4.14.4",
|
|
"log4js": "^6.9.1",
|
|
"shared": "*",
|
|
"sodium-native": "^3.4.1",
|
|
"zod": "^3.25.61"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.0",
|
|
"@types/i18n": "^0.13.4",
|
|
"@types/minimatch": "6.0.0",
|
|
"@types/node": "^17.0.21",
|
|
"@types/sodium-native": "^2.3.5",
|
|
"config-schema": "*",
|
|
"decimal.js-light": "^2.5.1",
|
|
"dotenv": "^10.0.0",
|
|
"graphql-request": "5.0.0",
|
|
"jest": "27.2.4",
|
|
"type-graphql": "^1.1.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|