bitip/package.json
Tudor Stanciu dca221384c chore: bump version to 1.0.1 for backend and frontend
fix: update import statements to remove file extensions for consistency
fix: improve path handling in pathCombine utility function
fix: ensure trailing slash in Vite base path configuration
refactor: update build script to use tsup for backend
refactor: clean up package.json dependencies and devDependencies
2025-10-05 03:55:22 +03:00

49 lines
1.6 KiB
JSON

{
"name": "bitip",
"version": "1.0.1",
"description": "Bitip - GeoIP Lookup Service with REST API and Web Interface",
"main": "dist/backend/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd src/backend && npm run dev",
"dev:frontend": "cd src/frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd src/backend && npm run build",
"build:frontend": "cd src/frontend && npm run build",
"start": "cd src/backend && npm start",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd src/backend && npm run lint",
"lint:frontend": "cd src/frontend && npm run lint",
"lint:fix": "npm run lint:fix:backend && npm run lint:fix:frontend",
"lint:fix:backend": "cd src/backend && npm run lint:fix",
"lint:fix:frontend": "cd src/frontend && npm run lint:fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"install:all": "npm install && cd src/backend && npm install && cd ../frontend && npm install",
"clean": "rimraf dist && cd src/backend && npm run clean && cd ../frontend && npm run clean"
},
"keywords": [
"geoip",
"ip-lookup",
"geolocation",
"maxmind",
"express",
"react",
"typescript"
],
"author": "Bitip Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"workspaces": [
"src/backend",
"src/frontend"
]
}