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
61 lines (61 loc) · 1.81 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.81 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
{
"name": "zero-cache",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest ",
"check-types": "tsc --noEmit",
"format": "prettier --write *",
"check-format": "prettier --check *",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"local": "node --loader ts-node/esm tool/local.ts",
"start": "node --require 'dotenv/config' --no-warnings --loader ts-node/esm ./src/server/main.ts"
},
"dependencies": {
"@drdgvhbh/postgres-error-codes": "^0.0.6",
"@fastify/cors": "^9.0.1",
"@fastify/websocket": "^10.0.1",
"@postgresql-typed/oids": "^0.2.0",
"@rocicorp/lock": "^1.0.4",
"@rocicorp/logger": "^5.2.2",
"@rocicorp/resolver": "^1.0.2",
"@rocicorp/zqlite": "0.0.0",
"compare-utf8": "^0.1.1",
"datadog": "0.0.0",
"eventemitter3": "^5.0.1",
"fastify": "^4.27.0",
"json-custom-numbers": "^3.1.1",
"pg": "^8.11.3",
"pg-format": "npm:pg-format-fix@^1.0.5",
"pg-logical-replication": "^2.0.5",
"postgres": "^3.4.4",
"postgres-array": "^3.0.2",
"xxhash-wasm": "^1.0.2",
"zero-protocol": "0.0.0",
"zql": "0.0.0"
},
"devDependencies": {
"@rocicorp/eslint-config": "^0.5.1",
"@rocicorp/prettier-config": "^0.2.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testcontainers/postgresql": "^10.9.0",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^18.16.0",
"@types/pg": "^8.11.2",
"@types/pg-format": "^1.0.5",
"@types/ws": "^8.5.10",
"concurrently": "^8.2.1",
"dotenv": "^16.4.5",
"rollup-plugin-dts": "^6.1.1",
"shared": "0.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"eslintConfig": {
"extends": "@rocicorp/eslint-config"
},
"prettier": "@rocicorp/prettier-config"
}