Path: blob/master/src/packages/database/package.json
1496 views
{1"name": "@cocalc/database",2"version": "0.35.8",3"description": "CoCalc: code for working with our PostgreSQL database",4"exports": {5".": "./dist/index.js",6"./accounts/*": "./dist/accounts/*.js",7"./conat/*": "./dist/conat/*.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/conat": "workspace:*",22"@cocalc/database": "workspace:*",23"@cocalc/util": "workspace:*",24"async": "^1.5.2",25"awaiting": "^3.0.0",26"debug": "^4.4.0",27"immutable": "^4.3.0",28"lodash": "^4.17.21",29"lru-cache": "^7.18.3",30"pg": "^8.7.1",31"random-key": "^0.3.2",32"read": "^1.0.7",33"sql-string-escape": "^1.1.6",34"validator": "^13.6.0"35},36"devDependencies": {37"@types/lodash": "^4.14.202",38"@types/node": "^18.16.14",39"@types/pg": "^8.6.1",40"coffeescript": "^2.5.1"41},42"scripts": {43"preinstall": "npx only-allow pnpm",44"build": "../node_modules/.bin/tsc --build && coffee -c -o dist/ ./",45"clean": "rm -rf dist",46"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",47"test": "pnpm exec jest --forceExit --runInBand",48"depcheck": "pnpx depcheck | grep -Ev '\\.coffee|coffee$'",49"prepublishOnly": "pnpm test"50},51"repository": {52"type": "git",53"url": "https://github.com/sagemathinc/cocalc"54},55"homepage": "https://github.com/sagemathinc/cocalc",56"keywords": [57"postgresql",58"cocalc"59],60"author": "SageMath, Inc.",61"license": "SEE LICENSE.md",62"bugs": {63"url": "https://github.com/sagemathinc/cocalc/issues"64}65}666768