mirror of
https://dev.azure.com/tstanciu94/PhantomMind/_git/Bitip
synced 2025-10-13 01:52:19 +03:00
- feat: Implement GeoIP lookup service with frontend interface - feat: Add dotenv dependency and configure environment variables; update rate limiter response handling - refactor: Remove development Dockerfile and docker-compose for streamlined setup; update GeoIP service to use new MaxMind types - chore: update dependencies and ESLint configuration - feat: Add documentation for breaking changes and package updates after major version upgrades - feat: Add environment configuration files and update module imports for ES module support - feat: Update nodemon configuration and add register script for ES module support - feat: Add .gitattributes file to enforce LF line endings and define text/binary file types - feat: Implement graceful shutdown with timeout and update nodemon configuration - feat: Update environment configuration and add detailed configuration guide - feat: add frontend origin validation and update rate limits - feat: add versioning arguments and detailed OCI image labels to Dockerfile - feat: add version and release notes endpoints, update frontend to display release notes - feat: Refactor App component to use React Router for navigation - feat: Update navigation styles and remove unused type definitions for react-router-dom - feat: Generate runtime configuration for frontend and serve env.js - feat: Update dependencies, enhance ESLint configuration, and improve Vite setup - refactor: Remove ensureTrailingSlash function and simplify basePath assignment in Vite config
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "bitip",
|
|
"version": "1.0.0",
|
|
"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"
|
|
],
|
|
"dependencies": {
|
|
"dotenv": "^17.2.3"
|
|
}
|
|
}
|