Skip to content
Snippets Groups Projects
package.json 4.39 KiB
Newer Older
  • Learn to ignore specific revisions
  • Zdravko Iliev's avatar
    Zdravko Iliev committed
    {
      "name": "ocm-engine",
      "version": "0.0.0",
    
      "license": "Apache-2.0",
      "scripts": {
    
        "build:all": "yarn build:agent && yarn build:cm && yarn build:am && yarn build:pm && yarn build:gw",
        "build:agent": "nx run agent:build:development --parallel=3",
    
        "build:agent:production": "nx run agent:build:production",
    
        "build:cm": "nx run connection-manager:build:development --parallel=3",
    
        "build:cm:production": "nx run connection-manager:build:production",
    
        "build:am": "nx run attestation-manager:build:development --parallel=3",
    
        "build:am:production": "nx run attestation-manager:build:production",
    
        "build:pm": "nx run proof-manager:build:development --parallel=3",
    
        "build:pm:production": "nx run proof-manager:build:production",
    
        "build:gw": "nx run gateway:build:development --parallel=3",
        "build:gw:production": "nx run gateway:build:production",
        "serve:all": "concurrently \"yarn serve:agent\" \"yarn serve:cm\"  \"yarn serve:am\" \"yarn serve:pm\" \"yarn serve:gw\"",
    
        "serve:agent": "nx run agent:serve:development",
        "serve:cm": "nx run connection-manager:serve:development",
        "serve:am": "nx run attestation-manager:serve:development",
        "serve:pm": "nx run proof-manager:serve:development",
    
        "serve:gw": "nx run gateway:serve:development",
        "infra": "cd compose && docker-compose --profile issuer --profile holder up -d --build",
        "infra:down": "cd compose && docker-compose --profile issuer --profile holder down",
    
        "infra:status": "cd compose && docker-compose ps -a",
    
        "infra:issuer": "cd compose && docker-compose --profile issuer up -d --build",
        "infra:holder": "cd compose && docker-compose --profile holder up -d --build",
    
        "infra:issuer:stop": "cd compose && docker-compose --profile issuer stop",
        "infra:holder:stop": "cd compose && docker-compose --profile holder stop",
        "infra:local": "cd compose && docker-compose -f=docker-compose.infra.yml up -d",
    
        "infra:local:stop": "cd compose && docker-compose -f=docker-compose.infra.yml stop",
        "infra:simple": "cd compose && docker-compose -f docker-compose.simple.yml up -d"
    
    Zdravko Iliev's avatar
    Zdravko Iliev committed
      "private": true,
      "dependencies": {
    
    Zdravko Iliev's avatar
    Zdravko Iliev committed
        "axios": "^1.0.0",
    
    Zdravko Iliev's avatar
    Zdravko Iliev committed
        "reflect-metadata": "^0.1.13",
        "rxjs": "^7.0.0",
        "tslib": "^2.3.0"
      },
      "devDependencies": {
    
        "typescript": "~4.9.5"
      },
      "resolutions": {
        "ref-napi": "npm:@2060.io/ref-napi"
    
    Zdravko Iliev's avatar
    Zdravko Iliev committed
      }
    }