Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/package.json
Views: 687
{1"name": "cocalc",2"version": "1.0.0",3"description": "CoCalc: Collaborative Calculation",4"scripts": {5"make": "pnpm run build",6"make-dev": "pnpm run build-dev",7"build": "./workspaces.py install && ./workspaces.py build",8"build-dev": "./workspaces.py install && ./workspaces.py build --dev",9"clean": "rm -rf packages/node_modules && ./workspaces.py clean && cd compute/compute && pnpm clean ",10"hub": "cd packages/hub && npm run hub-project-dev-nobuild",11"static": "cd packages/static && npm run webpack",12"psql": "export PGHOST=${PGHOST:=$INIT_CWD/data/postgres/socket}; PGUSER='smc' psql",13"database": "cd dev/project && ./start_postgres.py",14"database-remove-locks": "./scripts/database-remove-locks",15"c": "LOGS=/tmp/ DEBUG='cocalc:*' ./scripts/c",16"version-check": "pip3 install typing_extensions mypy || pip3 install --break-system-packages typing_extensions mypy && ./workspaces.py version-check && mypy scripts/check_npm_packages.py",17"test-parallel": "unset DEBUG && pnpm run version-check && cd packages && pnpm run -r --parallel test",18"test": "unset DEBUG && pnpm run version-check && cd packages && pnpm run -r test",19"prettier-all": "cd packages/"20},21"repository": {22"type": "git",23"url": "https://github.com/sagemathinc/cocalc"24},25"keywords": [26"python",27"sage",28"sagemath",29"latex",30"terminal",31"web",32"ide",33"math",34"mathematics"35],36"author": "SageMath, Inc.",37"license": "SEE LICENSE.md",38"bugs": {39"url": "https://github.com/sagemathinc/cocalc/issues"40},41"homepage": "https://github.com/sagemathinc/cocalc",42"dependencies": {43"lru-cache": "^7.18.3"44}45}464748