-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.5 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
45
46
47
48
49
50
{
"name": "account-labeller",
"version": "1.0.0",
"main": "app.js",
"author": "Bossett <[email protected]>",
"license": "MIT",
"type": "module",
"dependencies": {
"@atproto/api": "^0.13.6",
"@atproto/identity": "^0.4.0",
"@atproto/lexicon": "^0.4.0",
"@atproto/repo": "^0.5.0",
"@atproto/syntax": "^0.3.0",
"@atproto/xrpc-server": "^0.6.3",
"@did-plc/lib": "^0.0.4",
"@neondatabase/serverless": "^0.9.5",
"@types/express": "^4.17.17",
"@types/ws": "^8.5.10",
"bufferutil": "^4.0.8",
"cbor-x": "^1.5.8",
"denque": "^2.1.0",
"drizzle-orm": "^0.33.0",
"express": "^4.18.3",
"multiformats": "9.9.0",
"p-ratelimit": "^1.0.1",
"postgres": "^3.4.4",
"winston": "^3.12.0",
"ws": "^8.17.0",
"zod": "^3.23.5"
},
"devDependencies": {
"@types/node": "^20.11.28",
"drizzle-kit": "^0.24.2",
"tsc-alias": "^1.8.8",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"scripts": {
"db:up": "drizzle-kit up",
"db:generate": "drizzle-kit generate",
"db:drop-migrations": "drizzle-kit drop",
"db:migrate": "tsx --env-file=.env src/db/migrate.ts",
"db:update": "yarn db:generate && yarn db:migrate",
"build": "tsc && tsc-alias && node ./dist/env/limits.js",
"start": "node ./dist/app.js",
"dev": "tsx --env-file=.env src/app.ts",
"validLimits": "tsx src/env/limits.ts",
"deleteAllRecords": "tsx --env-file=.env src/scripts/deleteAllRecords.ts"
}
}