Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/backend/package.json
1447 views
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
"./conat": "./dist/conat/index.js",
9
"./server-settings": "./dist/server-settings/index.js",
10
"./auth/*": "./dist/auth/*.js",
11
"./auth/tokens/*": "./dist/auth/tokens/*.js"
12
},
13
"keywords": ["utilities", "cocalc"],
14
"scripts": {
15
"preinstall": "npx only-allow pnpm",
16
"clean": "rm -rf dist node_modules",
17
"build": "pnpm exec tsc --build",
18
"tsc": "pnpm exec tsc --watch --pretty --preserveWatchOutput",
19
"test": "pnpm exec jest --forceExit --maxWorkers=50%",
20
"depcheck": "pnpx depcheck --ignores events",
21
"prepublishOnly": "pnpm test",
22
"conat-watch": "node ./bin/conat-watch.cjs",
23
"conat-connections": "node ./bin/conat-connections.cjs",
24
"conat-disconnect": "node ./bin/conat-disconnect.cjs",
25
"conat-inventory": "node ./bin/conat-inventory.cjs",
26
"conat-persist": "DEBUG=cocalc:* node ./bin/conat-persist.cjs"
27
},
28
"files": ["dist/**", "bin/**", "README.md", "package.json"],
29
"author": "SageMath, Inc.",
30
"license": "SEE LICENSE.md",
31
"dependencies": {
32
"@cocalc/backend": "workspace:*",
33
"@cocalc/conat": "workspace:*",
34
"@cocalc/util": "workspace:*",
35
"@types/debug": "^4.1.12",
36
"@types/jest": "^29.5.14",
37
"awaiting": "^3.0.0",
38
"better-sqlite3": "^11.10.0",
39
"chokidar": "^3.6.0",
40
"debug": "^4.4.0",
41
"fs-extra": "^11.2.0",
42
"lodash": "^4.17.21",
43
"lru-cache": "^7.18.3",
44
"password-hash": "^1.2.2",
45
"prom-client": "^13.0.0",
46
"rimraf": "^5.0.5",
47
"shell-escape": "^0.2.0",
48
"tmp-promise": "^3.0.3",
49
"zstd-napi": "^0.0.10"
50
},
51
"repository": {
52
"type": "git",
53
"url": "https://github.com/sagemathinc/cocalc"
54
},
55
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/backend",
56
"devDependencies": {
57
"@types/node": "^18.16.14"
58
}
59
}
60
61