forked from appy-one/acebase-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "acebase-server",
"version": "1.2.2",
"description": "AceBase realtime database server (webserver endpoint to allow remote connections)",
"main": "./src/index.js",
"private": false,
"repository": "github:appy-one/acebase-server",
"scripts": {
"start": "node src/acebase-server.js start default 0.0.0.0 3000",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc --outDir ./src"
},
"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 <[email protected]> (http://appy.one)",
"license": "MIT",
"dependencies": {
"acebase": "^1.4.1",
"acebase-core": "^1.4.0",
"express": "^4.16.3",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.14"
}
}