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/packages/backend/package.json
Views: 687
{1"name": "@cocalc/backend",2"version": "1.22.2",3"description": "CoCalc backend functionality: functionality used by either the hub, the next.js server or the project.",4"exports": {5"./*": "./dist/*.js",6"./database": "./dist/database/index.js",7"./server-settings": "./dist/server-settings/index.js",8"./auth/*": "./dist/auth/*.js",9"./auth/tokens/*": "./dist/auth/tokens/*.js"10},11"keywords": [12"utilities",13"cocalc"14],15"scripts": {16"preinstall": "npx only-allow pnpm",17"clean": "rm -rf dist node_modules",18"build": "pnpm exec tsc --build",19"tsc": "pnpm exec tsc --watch --pretty --preserveWatchOutput",20"test": "pnpm exec jest --detectOpenHandles",21"prepublishOnly": "pnpm test"22},23"files": [24"dist/**",25"bin/**",26"README.md",27"package.json"28],29"author": "SageMath, Inc.",30"license": "SEE LICENSE.md",31"dependencies": {32"@cocalc/backend": "workspace:*",33"@cocalc/util": "workspace:*",34"@types/debug": "^4.1.12",35"@types/watchpack": "^2.4.4",36"awaiting": "^3.0.0",37"chokidar": "^3.6.0",38"debug": "^4.3.2",39"fs-extra": "^11.2.0",40"lodash": "^4.17.21",41"lru-cache": "^7.18.3",42"password-hash": "^1.2.2",43"prom-client": "^13.0.0",44"rimraf": "^5.0.5",45"shell-escape": "^0.2.0",46"supports-color": "^9.0.2",47"underscore": "^1.12.1"48},49"repository": {50"type": "git",51"url": "https://github.com/sagemathinc/cocalc"52},53"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/backend",54"devDependencies": {55"@types/node": "^18.16.14",56"expect": "^26.6.2",57"nyc": "^15.1.0"58}59}606162