-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.32 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
79
80
81
82
83
84
85
86
87
88
{
"name": "convos-backend",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"buf:generate": "buf generate",
"build": "bun build src/index.ts --outfile index.js --target bun --external @xmtp/node-bindings",
"check": "bun typecheck && bun format:check && bun lint",
"clean": "bun clean:dbs && rimraf node_modules",
"clean:dbs": "rimraf **/*.db3* ||:",
"dev": "bun --watch run src/index.ts",
"format": "prettier -w .",
"format:check": "prettier -c .",
"generate:key": "bun run dev/scripts/generateDbKey.ts",
"generate:notification-secret": "bun run dev/scripts/generateNotificationSecret.ts",
"lint": "eslint .",
"migrate:deploy": "prisma migrate deploy",
"migrate:dev": "prisma migrate dev",
"start": "bun run --preload ./src/instrumentation.ts src/index.ts",
"test:local": "TEST_NOTIFICATION_DELIVERY_URL=http://host.docker.internal:8081 dev/restart-notification && bun test",
"test:notifications-client": "TEST_NOTIFICATION_DELIVERY_URL=http://host.docker.internal:8081 dev/restart-notification && bun test tests/notifications.client.test.ts",
"test:push": "bun run scripts/test-push-notification.ts",
"test:push-simple": "bun run scripts/simple-push-test.ts",
"typecheck": "tsc"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.750.0",
"@aws-sdk/s3-request-presigner": "^3.750.0",
"@bufbuild/protobuf": "^2.2.3",
"@connectrpc/connect": "^2.0.1",
"@connectrpc/connect-node": "^2.0.1",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.200.0",
"@opentelemetry/instrumentation-express": "^0.48.1",
"@opentelemetry/instrumentation-http": "^0.200.0",
"@opentelemetry/instrumentation-pino": "^0.47.0",
"@opentelemetry/sdk-node": "^0.200.0",
"@prisma/client": "^6.12.0",
"@prisma/instrumentation": "^6.7.0",
"@turnkey/sdk-server": "^3.0.1",
"@xmtp/node-sdk": "^2.0.8",
"cors": "^2.8.5",
"expo-server-sdk": "^3.14.0",
"express": "^5.0.1",
"express-rate-limit": "^7.5.0",
"firebase-admin": "^13.4.0",
"helmet": "^8.0.0",
"jose": "^5.10.0",
"mime-types": "^2.1.35",
"path-to-regexp": "^8.3.0",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"pino-pretty": "^13.0.0",
"protobufjs": "^7.5.4",
"secp256k1": "^5.0.1",
"thirdweb": "^5.88.2",
"uint8array-extras": "^1.4.0",
"uuid": "^11.0.5",
"viem": "^2.23.2",
"zod": "^3.24.1",
"zod-prisma-types": "^3.2.4"
},
"devDependencies": {
"@bufbuild/buf": "^1.50.0",
"@bufbuild/protoc-gen-es": "^2.2.3",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/bun": "^1.2.1",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/mime-types": "^2.1.4",
"@types/uuid": "^10.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.7",
"prisma": "^6.12.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}