CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

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