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/project/package.json
Views: 687
1
{
2
"name": "@cocalc/project",
3
"version": "1.34.3",
4
"description": "CoCalc: project daemon",
5
"exports": {
6
"./named-servers": "./dist/named-servers/index.js",
7
"./*": "./dist/*.js"
8
},
9
"keywords": [
10
"python",
11
"sage",
12
"sagemath",
13
"latex",
14
"terminal",
15
"web",
16
"ide",
17
"math",
18
"mathematics"
19
],
20
"dependencies": {
21
"@cocalc/backend": "workspace:*",
22
"@cocalc/comm": "workspace:*",
23
"@cocalc/frontend": "workspace:*",
24
"@cocalc/jupyter": "workspace:*",
25
"@cocalc/primus-multiplex": "^1.1.0",
26
"@cocalc/primus-responder": "^1.0.5",
27
"@cocalc/project": "workspace:*",
28
"@cocalc/sync": "workspace:*",
29
"@cocalc/sync-client": "workspace:*",
30
"@cocalc/sync-fs": "workspace:*",
31
"@cocalc/terminal": "workspace:*",
32
"@cocalc/util": "workspace:*",
33
"@nteract/messaging": "^7.0.20",
34
"@types/lodash": "^4.14.202",
35
"@types/primus": "^7.3.6",
36
"@types/uuid": "^8.3.1",
37
"awaiting": "^3.0.0",
38
"body-parser": "^1.20.3",
39
"commander": "^7.2.0",
40
"compression": "^1.7.4",
41
"daemonize-process": "^3.0.0",
42
"debug": "^4.3.2",
43
"diskusage": "^1.1.3",
44
"expect": "^26.6.2",
45
"express": "^4.21.1",
46
"express-rate-limit": "^7.4.0",
47
"formidable": "^3.5.1",
48
"get-port": "^5.1.1",
49
"googlediff": "^0.1.0",
50
"json-stable-stringify": "^1.0.1",
51
"jupyter-paths": "^2.0.3",
52
"lean-client-js-node": "^1.2.12",
53
"lodash": "^4.17.21",
54
"lru-cache": "^7.18.3",
55
"pidusage": "^1.2.0",
56
"prettier": "^3.0.2",
57
"primus": "^8.0.7",
58
"prom-client": "^13.0.0",
59
"serve-index": "^1.9.1",
60
"temp": "^0.9.4",
61
"tmp": "0.0.33",
62
"uglify-js": "^3.14.1",
63
"uuid": "^8.3.2",
64
"websocket-sftp": "^0.8.2",
65
"which": "^2.0.2",
66
"ws": "^8.18.0",
67
"zeromq": "^5.2.8"
68
},
69
"devDependencies": {
70
"@types/body-parser": "^1.19.5",
71
"@types/express": "^4.17.21",
72
"@types/jquery": "^3.5.5",
73
"@types/node": "^18.16.14"
74
},
75
"scripts": {
76
"preinstall": "npx only-allow pnpm",
77
"start": "NODE_OPTIONS='--trace-warnings --unhandled-rejections=strict --enable-source-maps' pnpm cocalc-project",
78
"build": "pnpm --prefix ../frontend/ i18n:compile && ../node_modules/.bin/tsc --build",
79
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
80
"test": "COCALC_PROJECT_ID=812abe34-a382-4bd1-9071-29b6f4334f03 COCALC_USERNAME=user pnpm exec jest",
81
"prepublishOnly": "pnpm test",
82
"clean": "rm -rf dist"
83
},
84
"author": "SageMath, Inc.",
85
"contributors": [
86
"William Stein <[email protected]>"
87
],
88
"license": "SEE LICENSE.md",
89
"bugs": {
90
"url": "https://github.com/sagemathinc/cocalc/issues"
91
},
92
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/project",
93
"repository": {
94
"type": "git",
95
"url": "https://github.com/sagemathinc/cocalc"
96
},
97
"bin": {
98
"cocalc-project": "./bin/cocalc-project.js"
99
}
100
}
101
102