https://github.com/sagemathinc/cocalc
Raw File
Tip revision: 0cb61883df415d43295f3777b951d54161816cba authored by Harald Schilly on 20 January 2023, 11:33:30 UTC
upgrades: … but add on-prem fields only for displaying quotas, without modifying the array
Tip revision: 0cb6188
package.json
{
  "name": "cocalc",
  "version": "1.0.0",
  "description": "CoCalc: Collaborative Calculation",
  "scripts": {
    "make": "pnpm run build",
    "make-dev": "pnpm run build-dev",
    "build": "./workspaces.py install && ./workspaces.py build",
    "build-dev": "./workspaces.py install && ./workspaces.py build --dev",
    "clean": "./workspaces.py clean",
    "hub": "cd packages/hub && npm run hub-project-dev-nobuild",
    "static": "cd packages/static && npm run webpack",
    "psql": "export PGHOST=${PGHOST:=$INIT_CWD/data/postgres/socket}; PGUSER='smc' psql",
    "database": "cd dev/project && ./start_postgres.py",
    "c": "LOGS=/tmp/ DEBUG='cocalc:*' ./scripts/c",
    "version-check": "pip3 install typing_extensions mypy && ./workspaces.py version-check && mypy scripts/check_npm_packages.py",
    "test": "pnpm run version-check && cd packages && pnpm run -r --parallel test",
    "test1": "pnpm run version-check && cd packages && pnpm run -r  test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sagemathinc/cocalc"
  },
  "keywords": [
    "python",
    "sage",
    "sagemath",
    "latex",
    "terminal",
    "web",
    "ide",
    "math",
    "mathematics"
  ],
  "author": "SageMath, Inc.",
  "license": "SEE LICENSE.md",
  "bugs": {
    "url": "https://github.com/sagemathinc/cocalc/issues"
  },
  "homepage": "https://github.com/sagemathinc/cocalc"
}
back to top