-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.69 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
{
"name": "sangre",
"version": "0.0.1",
"description": "Sangre streams your backend queries in realtime to your clients minimizing the load via diffs.",
"license": "GPL-3.0-only",
"scripts": {
"test": "mocha --exit -r ts-node/register test/index.test.ts \"test/**/*.test.ts\"",
"test:debug": "nodemon --watch ./ -e ts --exec \"TS_NODE_TRANSPILE_ONLY=true mocha --inspect=0.0.0.0:9229 -r ts-node/register test/index.test.ts \\\"test/**/*.test.ts\\\"\"",
"example:server": "nodemon --watch ./ -e ts --exec \"node --inspect=0.0.0.0:9229 -r ts-node/register example/server.ts\"",
"build:chart": "nodemon --watch doc/charts/topology.mmd --exec \"mmdc -i doc/charts/topology.mmd -t dark -b transparent\""
},
"dependencies": {
"@supabase/realtime-js": "^1.3.6",
"@types/express": "^4.17.9",
"@types/express-ws": "^3.0.1",
"@types/fast-json-patch": "^1.1.5",
"@types/lodash": "^4.14.167",
"@types/node": "^17.0.18",
"@types/pg": "^8.6.4",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.2",
"async-constructor": "^0.4.17",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"fast-json-patch": "^3.1.0",
"lodash": "^4.17.20",
"pg": "^8.7.3",
"ts-node": "^10.5.0",
"typescript": "^4.1.2",
"uuid": "^8.3.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"chai-match": "^1.1.1",
"dayjs": "^1.9.7",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"source-map-support": "^0.5.19"
}
}