Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/src/package.json
Views: 1250
{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"rspack": "cd packages/static && pnpm watch",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"nats-server": "cd ${COCALC_ROOT:=$INIT_CWD}/packages/backend && node -e \"require('@cocalc/backend/nats/install').main()\" && node -e \"require('@cocalc/backend/nats/conf').main()\" && node -e \"require('@cocalc/backend/nats/server').main()\"",21"build-nats": "cd ${COCALC_ROOT:=$INIT_CWD}/packages/util && pnpm install && pnpm build && cd ${COCALC_ROOT:=$INIT_CWD}/packages/nats && pnpm install && pnpm build && cd ${COCALC_ROOT:=$INIT_CWD}/packages/backend && pnpm install && pnpm build",22"nats-server-ci": "pnpm run build-nats && cd ${COCALC_ROOT:=$INIT_CWD}/packages/backend && node -e \"require('@cocalc/backend/nats/install').main()\" && node -e \"require('@cocalc/backend/nats/conf').main()\" && node -e \"require('@cocalc/backend/nats/server').main()\"",23"nats-server-daemon": "cd ${COCALC_ROOT:=$INIT_CWD}/packages/backend && node -e \"require('@cocalc/backend/nats/install').main()\" && node -e \"require('@cocalc/backend/nats/conf').main()\" && node -e \"require('@cocalc/backend/nats/server').main({daemon:true})\"",24"nats-server-verbose": "cd ${COCALC_ROOT:=$INIT_CWD}/packages/backend && node -e \"require('@cocalc/backend/nats/install').main()\" && node -e \"require('@cocalc/backend/nats/conf').main()\" && node -e \"require('@cocalc/backend/nats/server').main({verbose:true})\"",25"nats-cli": "cd ${COCALC_ROOT:=$INIT_CWD}/packages/backend && node -e \"require('@cocalc/backend/nats/cli').main()\"",26"nats-sys": "cd ${COCALC_ROOT:=$INIT_CWD}/packages/backend && node -e \"require('@cocalc/backend/nats/cli').main({user:'sys'})\"",27"nats-tiered-storage": "cd ${COCALC_ROOT:=$INIT_CWD}/packages/server && DEBUG=cocalc:* DEBUG_CONSOLE=yes node -e \"require('@cocalc/server/nats/tiered-storage').init()\"",28"local-ci": "./scripts/ci.sh"29},30"repository": {31"type": "git",32"url": "https://github.com/sagemathinc/cocalc"33},34"keywords": [35"python",36"sage",37"sagemath",38"latex",39"terminal",40"web",41"ide",42"math",43"mathematics"44],45"author": "SageMath, Inc.",46"license": "SEE LICENSE.md",47"bugs": {48"url": "https://github.com/sagemathinc/cocalc/issues"49},50"homepage": "https://github.com/sagemathinc/cocalc",51"dependencies": {52"lru-cache": "^7.18.3"53},54"pnpm": {55"onlyBuiltDependencies": [56"websocketfs",57"websocket-sftp",58"@cocalc/fuse-native"59]60}61}626364