-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "app",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "prisma generate && node ./esbuild.mjs",
"start": "node dist/index.js",
"start:prod": "pnpm run migrate && pnpm run start",
"codegen": "sh -c 'lex gen-server ./src/appview/lexicon ../lexicons/com/atproto/*/* ../lexicons/land/evex/*/*'",
"typecheck": "tsc --noEmit",
"migrate": "prisma migrate deploy",
"generate": "prisma generate"
},
"dependencies": {
"@atproto/api": "^0.13.25",
"@atproto/crypto": "^0.4.2",
"@atproto/identity": "^0.4.5",
"@atproto/jwk": "^0.1.2",
"@atproto/jwk-jose": "^0.1.3",
"@atproto/lexicon": "^0.4.4",
"@atproto/oauth-client-node": "^0.2.8",
"@atproto/xrpc": "^0.6.5",
"@atproto/xrpc-server": "^0.7.4",
"@evex/xrpc-hono": "npm:@jsr/evex__xrpc-hono@^0.2.4",
"@hono/node-server": "^1.13.7",
"@prisma/client": "^6.2.1",
"@skyware/jetstream": "^0.2.2",
"express": "^4.21.2",
"hono": "^4.6.16",
"ioredis": "^5.4.2",
"jsonwebtoken": "^9.0.2",
"key-encoder": "^2.0.3",
"multiformats": "^13.3.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@atproto/lex-cli": "^0.5.4",
"@biomejs/biome": "^1.9.4",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^20.17.10",
"@types/ws": "^8.5.13",
"esbuild": "^0.24.2",
"prisma": "^6.7.0",
"tsx": "^4.7.1",
"typescript": "^5.7.2"
}
}