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/package.json
Views: 687
1
{
2
"name": "cocalc",
3
"version": "1.0.0",
4
"description": "CoCalc: Collaborative Calculation",
5
"scripts": {
6
"make": "pnpm run build",
7
"make-dev": "pnpm run build-dev",
8
"build": "./workspaces.py install && ./workspaces.py build",
9
"build-dev": "./workspaces.py install && ./workspaces.py build --dev",
10
"clean": "rm -rf packages/node_modules && ./workspaces.py clean && cd compute/compute && pnpm clean ",
11
"hub": "cd packages/hub && npm run hub-project-dev-nobuild",
12
"static": "cd packages/static && npm run webpack",
13
"psql": "export PGHOST=${PGHOST:=$INIT_CWD/data/postgres/socket}; PGUSER='smc' psql",
14
"database": "cd dev/project && ./start_postgres.py",
15
"database-remove-locks": "./scripts/database-remove-locks",
16
"c": "LOGS=/tmp/ DEBUG='cocalc:*' ./scripts/c",
17
"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",
18
"test-parallel": "unset DEBUG && pnpm run version-check && cd packages && pnpm run -r --parallel test",
19
"test": "unset DEBUG && pnpm run version-check && cd packages && pnpm run -r test",
20
"prettier-all": "cd packages/"
21
},
22
"repository": {
23
"type": "git",
24
"url": "https://github.com/sagemathinc/cocalc"
25
},
26
"keywords": [
27
"python",
28
"sage",
29
"sagemath",
30
"latex",
31
"terminal",
32
"web",
33
"ide",
34
"math",
35
"mathematics"
36
],
37
"author": "SageMath, Inc.",
38
"license": "SEE LICENSE.md",
39
"bugs": {
40
"url": "https://github.com/sagemathinc/cocalc/issues"
41
},
42
"homepage": "https://github.com/sagemathinc/cocalc",
43
"dependencies": {
44
"lru-cache": "^7.18.3"
45
}
46
}
47
48