mirror of
https://github.com/appy-one/acebase-server.git
synced 2026-05-25 14:12:16 -06:00
84 lines
2.3 KiB
JSON
84 lines
2.3 KiB
JSON
{
|
|
"name": "acebase-server",
|
|
"version": "1.19.0",
|
|
"description": "AceBase realtime database server (webserver endpoint to allow remote connections)",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/index.js",
|
|
"types": "./dist/types/index.d.ts"
|
|
}
|
|
},
|
|
"bin": {
|
|
"acebase-server": "./bin/acebase-server.js"
|
|
},
|
|
"private": false,
|
|
"repository": "github:appy-one/acebase-server",
|
|
"scripts": {
|
|
"start": "node dist/esm/start.js DBNAME=default DBPATH=. HOST=localhost PORT=3000 TXLOG=1 AUTH=1",
|
|
"test": "set NODE_ENV=development && npm run start",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!",
|
|
"build:clean": "rm -fr dist/*",
|
|
"build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'",
|
|
"build:cjs": "tsc -p tsconfig-cjs.json",
|
|
"build:packages": "bash ./create-package-files",
|
|
"preversion": "npm run build",
|
|
"version": "node ./build-vars.js"
|
|
},
|
|
"keywords": [
|
|
"database",
|
|
"db",
|
|
"json",
|
|
"binary",
|
|
"object",
|
|
"tree",
|
|
"nosql",
|
|
"embedded",
|
|
"schemaless",
|
|
"orm",
|
|
"query",
|
|
"index",
|
|
"indexes",
|
|
"fulltext",
|
|
"geo",
|
|
"transaction",
|
|
"datastore",
|
|
"fast",
|
|
"low-memory",
|
|
"realtime",
|
|
"events",
|
|
"users",
|
|
"authentication",
|
|
"rules",
|
|
"authorization",
|
|
"ssl",
|
|
"https",
|
|
"firebase",
|
|
"oauth2"
|
|
],
|
|
"author": "Ewout Stortenbeker <me@appy.one> (http://appy.one)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"acebase": "^1.29.0",
|
|
"acebase-core": "^1.27.1",
|
|
"express": "^4.17.1",
|
|
"socket.io": "^4.5.0",
|
|
"swagger-jsdoc": "^6.1.0",
|
|
"swagger-ui-express": "^4.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^10.17.60",
|
|
"@types/socket.io": "^3.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
"@typescript-eslint/parser": "^5.46.1",
|
|
"eslint": "^8.30.0",
|
|
"tsc-esm-fix": "^2.12.4",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|