UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

46 lines (45 loc) 1.36 kB
{ "name": "echadospalante-core", "version": "14.16.0", "description": "This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "src" ], "private": false, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "dev": "concurrently \"tsc --watch\" \"node dist/src/index.js --watch\"", "start": "tsc && node dist/src/index.js", "build": "tsc", "publish:patch": "npm version patch && npm run release", "publish:minor": "npm version minor && npm run release", "publish:major": "npm version major && npm run release", "release": "npm run build && npm publish" }, "author": "Juan Camilo Cardona Calderón, Maria Carolina Cardona Calderón", "keywords": [ "University of Antioquia", "Software Engineering", "echadospalante", "ventures", "entities", "domain", "core" ], "license": "MIT", "devDependencies": { "@types/geojson": "^7946.0.16", "typescript": "^5.5.4" }, "dependencies": { "@nestjs/typeorm": "^11.0.0", "@turf/turf": "^7.2.0", "geojson": "^0.5.0", "pg": "^8.14.1", "reflect-metadata": "^0.2.2", "typeorm": "^0.3.21" } }