Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/package.json
5559 views
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 && pnpm python-api",
9
"tsc-all": "./workspaces.py tsc --parallel",
10
"build-dev": "./workspaces.py install && ./workspaces.py build --dev && pnpm python-api",
11
"clean": "rm -rf packages/node_modules && ./workspaces.py clean && cd compute/compute && pnpm clean ",
12
"hub": "cd packages/hub && npm run hub-project-dev-nobuild",
13
"hub-prod": "cd packages/hub && npm run hub-project-prod-nobuild",
14
"rspack": "cd packages/static && pnpm watch",
15
"psql": "export PGHOST=${PGHOST:=$INIT_CWD/data/postgres/socket}; PGUSER='smc' psql",
16
"database": "cd dev/project && ./start_postgres.py",
17
"database-remove-locks": "./scripts/database-remove-locks",
18
"c": "LOGS=/tmp/ DEBUG='cocalc:*' ./scripts/c",
19
"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",
20
"test-parallel": "unset DEBUG && pnpm run version-check && cd packages && pnpm run -r --parallel test",
21
"test": "unset DEBUG && pnpm run depcheck && pnpm run version-check && ./workspaces.py test",
22
"test-github-ci": "unset DEBUG && pnpm run depcheck && pnpm run version-check && ./workspaces.py test --exclude=jupyter,file-server --retries=1",
23
"depcheck": "cd packages && pnpm run -r --parallel depcheck",
24
"prettier-all": "cd packages/",
25
"local-ci": "./scripts/ci.sh",
26
"conat-connections": "cd packages/backend && pnpm conat-connections",
27
"conat-watch": "cd packages/backend && pnpm conat-watch",
28
"conat-inventory": "cd packages/backend && pnpm conat-inventory",
29
"python-api": "cd python/cocalc-api && make all"
30
},
31
"repository": {
32
"type": "git",
33
"url": "https://github.com/sagemathinc/cocalc"
34
},
35
"keywords": [
36
"python",
37
"sage",
38
"sagemath",
39
"latex",
40
"terminal",
41
"web",
42
"ide",
43
"math",
44
"mathematics"
45
],
46
"author": "SageMath, Inc.",
47
"license": "SEE LICENSE.md",
48
"bugs": {
49
"url": "https://github.com/sagemathinc/cocalc/issues"
50
},
51
"homepage": "https://github.com/sagemathinc/cocalc",
52
"dependencies": {
53
"lru-cache": "^7.18.3"
54
},
55
"pnpm": {
56
"onlyBuiltDependencies": [
57
"websocketfs",
58
"websocket-sftp",
59
"@cocalc/fuse-native"
60
]
61
}
62
}
63
64