forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.33 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.33 KB
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
{
"name": "zero-cache",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc",
"check-types:watch": "tsc --watch",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"local": "tsx tool/local.ts",
"start": "tsx ./src/server/multi/main.ts",
"bench": "tsx ./bench/bench.ts",
"double": "tsx ./bench/double.ts",
"wal_bench": "tsx ./bench/wal-bench.ts",
"wal2_bench": "tsx ./bench/wal2-bench.ts"
},
"dependencies": {
"@drdgvhbh/postgres-error-codes": "^0.0.6",
"@fastify/cors": "^10.0.0",
"@fastify/websocket": "^11.0.0",
"@google-cloud/precise-date": "^4.0.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.56.0",
"@opentelemetry/sdk-node": "^0.56.0",
"@opentelemetry/sdk-trace-node": "^1.29.0",
"@postgresql-typed/oids": "^0.2.0",
"@rocicorp/lock": "^1.0.4",
"@rocicorp/logger": "^5.3.0",
"@rocicorp/resolver": "^1.0.2",
"@rocicorp/zero-sqlite3": "^1.0.4",
"compare-utf8": "^0.1.1",
"dotenv": "^16.4.5",
"eventemitter3": "^5.0.1",
"fastify": "^5.0.0",
"jose": "^5.9.3",
"json-custom-numbers": "^3.1.1",
"nanoid": "^5.0.8",
"pg": "^8.11.3",
"pg-format": "npm:pg-format-fix@^1.0.5",
"pg-logical-replication": "^2.0.7",
"pg-protocol": "^1.7.0",
"postgres": "^3.4.4",
"postgres-array": "^3.0.2",
"tsx": "^4.19.1",
"url-pattern": "^1.0.3",
"ws": "^8.18.0",
"xxhash-wasm": "^1.1.0",
"zero-protocol": "0.0.0",
"zql": "0.0.0",
"zqlite": "0.0.0"
},
"devDependencies": {
"@rocicorp/eslint-config": "^0.5.1",
"@rocicorp/prettier-config": "^0.2.0",
"@testcontainers/postgresql": "^10.9.0",
"@types/lodash.kebabcase": "^4.1.9",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.snakecase": "^4.1.9",
"@types/node": "^18.16.0",
"@types/pg": "^8.11.2",
"@types/pg-format": "^1.0.5",
"@types/strip-ansi": "^3.0.0",
"@types/ws": "^8.5.12",
"concurrently": "^8.2.1",
"shared": "0.0.0",
"strip-ansi": "^7.1.0",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"eslintConfig": {
"extends": "../../eslint-config.json"
},
"prettier": "@rocicorp/prettier-config"
}