{
  "name": "simple-upm-example",
  "version": "1.0.0",
  "description": "Simple example using UPM",
  "main": "index.js",
  "scripts": {
    "start": "node index.js",
    "python": "python main.py"
  },
  "dependencies": {
    "express": "^4.18.0",
    "lodash": "^4.17.21",
    "numpy": "python:^1.24.0",
    "requests": "python:^2.31.0"
  },
  "devDependencies": {
    "nodemon": "^3.0.1",
    "pytest": "python:^7.4.0"
  },
  "upm": {
    "environments": {
      "default": {
        "languages": ["javascript", "python"],
        "pythonVersion": "3.10"
      }
    }
  }
}