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/database/package.json
Views: 687
1
{
2
"name": "@cocalc/database",
3
"version": "0.35.8",
4
"description": "CoCalc: code for working with our PostgreSQL database",
5
"exports": {
6
".": "./dist/index.js",
7
"./accounts/*": "./dist/accounts/*.js",
8
"./pool": "./dist/pool/index.js",
9
"./pool/*": "./dist/pool/*.js",
10
"./postgres/*": "./dist/postgres/*.js",
11
"./postgres/schema": "./dist/postgres/schema/index.js",
12
"./postgres/schema/*": "./dist/postgres/schema/*.js",
13
"./postgres/stripe": "./dist/postgres/stripe/index.js",
14
"./projects/*": "./dist/projects/*.js",
15
"./settings": "./dist/settings/index.js",
16
"./settings/*": "./dist/settings/*.js",
17
"./user-query": "./dist/user-query/index.js"
18
},
19
"dependencies": {
20
"@cocalc/backend": "workspace:*",
21
"@cocalc/database": "workspace:*",
22
"@cocalc/util": "workspace:*",
23
"@types/lodash": "^4.14.202",
24
"@types/pg": "^8.6.1",
25
"@types/uuid": "^8.3.1",
26
"async": "^1.5.2",
27
"awaiting": "^3.0.0",
28
"better-sqlite3": "^8.3.0",
29
"debug": "^4.3.2",
30
"immutable": "^4.3.0",
31
"json-stable-stringify": "^1.0.1",
32
"lodash": "^4.17.21",
33
"lru-cache": "^7.18.3",
34
"node-fetch": "2.6.7",
35
"pg": "^8.7.1",
36
"random-key": "^0.3.2",
37
"read": "^1.0.7",
38
"sql-string-escape": "^1.1.6",
39
"uuid": "^8.3.2",
40
"validator": "^13.6.0"
41
},
42
"devDependencies": {
43
"@types/node": "^18.16.14",
44
"coffeescript": "^2.5.1"
45
},
46
"scripts": {
47
"preinstall": "npx only-allow pnpm",
48
"build": "../node_modules/.bin/tsc --build && coffee -c -o dist/ ./",
49
"clean": "rm -rf dist",
50
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
51
"test": "pnpm exec jest",
52
"prepublishOnly": "pnpm test"
53
},
54
"repository": {
55
"type": "git",
56
"url": "https://github.com/sagemathinc/cocalc"
57
},
58
"homepage": "https://github.com/sagemathinc/cocalc",
59
"keywords": [
60
"postgresql",
61
"cocalc"
62
],
63
"author": "SageMath, Inc.",
64
"license": "SEE LICENSE.md",
65
"bugs": {
66
"url": "https://github.com/sagemathinc/cocalc/issues"
67
}
68
}
69
70