-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@worldbrain/storex-hub",
"version": "0.4.8",
"description": "A single data store for your local Storex apps",
"main": "lib/main.js",
"scripts": {
"start": "ts-node ts/main.ts",
"cli": "ts-node ts/cli/main.ts",
"prepare": "tsc",
"prepare:watch": "npm run prepare -- -w",
"test": "mocha --require ts-node/register \"ts/**/*.test.ts\"",
"test:watch": "mocha -r source-map-support/register -r ts-node/register \"ts/**/*.test.ts\" --watch --watch-extensions ts",
"test:coverage": "rm -rf lib ; yarn prepare && nyc --reporter=html --reporter=text mocha 'lib/**/*.test.js'",
"build": "./scripts/build.sh"
},
"keywords": [],
"author": "Vincent den Boer",
"files": [
"lib/*",
"ts/*",
"tsconfig.json",
"scripts"
],
"dependencies": {
"@josephg/resolvable": "^1.0.0",
"@types/koa-session": "^5.10.1",
"@worldbrain/storex": "^0.4.1",
"@worldbrain/storex-backend-dexie": "^0.3.1",
"@worldbrain/storex-backend-typeorm": "^0.2.1",
"@worldbrain/storex-hub-interfaces": "^0.1.6",
"@worldbrain/storex-middleware-change-watcher": "^0.1.1",
"@worldbrain/storex-pattern-modules": "^0.4.0",
"auto-launch": "^5.0.5",
"bcryptjs": "^2.4.3",
"crypto-random-string": "^3.2.0",
"del": "^5.1.0",
"fake-indexeddb": "^2.0.4",
"fast-glob": "^3.2.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^8.0.6",
"koa-session": "^5.12.3",
"koa-socket-2": "^1.2.0",
"koa-static-server": "^1.5.2",
"lodash": "^4.17.10",
"openurl": "^1.1.1",
"prompt-sync": "^4.2.0",
"socket.io-client": "^2.3.0",
"sqlite3": "^4.1.1",
"supertest": "^4.0.2",
"tcp-port-used": "^1.0.1",
"tempy": "^0.5.0",
"typed-emitter": "^0.2.0",
"typeorm": "~0.2.24",
"user-logic": "^0.0.1",
"uuid": "^3.4.0",
"uws": "10.148.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.0.6",
"@types/events": "^1.2.0",
"@types/fs-extra": "^5.0.2",
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.0",
"@types/lodash": "^4.14.149",
"@types/minimist": "1.2.0",
"@types/mocha": "^2.2.44",
"@types/node": "^10.12.11",
"@types/prompt-sync": "^4.1.0",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.7",
"@types/yargs": "^11.0.0",
"chai": "^4.1.2",
"expect": "^25.3.0",
"fake-fs": "^0.5.0",
"fs-extra": "^9.0.0",
"json-cli-toolkit": "^0.10.0",
"mocha": "^4.0.1",
"nyc": "^13.3.0",
"pkg": "^4.4.6",
"sinon": "^4.1.2",
"source-map-support": "0.5.16",
"storex-hub-plugin-internal-selftest": "^0.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.7.5"
},
"resolutions": {
"**/graphql": "^14.0.0"
}
}