This repository has no description
2.4 kB
63 lines
1{
2 "name": "annos",
3 "version": "1.0.0",
4 "description": "",
5 "main": "index.js",
6 "directories": {
7 "doc": "docs"
8 },
9 "scripts": {
10 "test": "jest",
11 "test:watch": "jest --watch",
12 "test:e2e": "jest src/modules/user/tests/e2e/OAuthSignInFlow.test.ts --testTimeout=300000",
13 "build": "tsup",
14 "build:watch": "tsc --watch",
15 "dev": "concurrently -k -n TYPE,CODE -c red,blue \"tsc --noEmit --watch\" \"tsup src/index.ts --watch --onSuccess='node dist/index.js'\"",
16 "migrate": "node dist/scripts/migrate.js",
17 "lexgen": "lex gen-server ./src/modules/atproto/infrastructure/lexicon ./src/modules/atproto/infrastructure/lexicons/*",
18 "db:start": "docker run --name annos-postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=annotations -p 5432:5432 -d postgres:14",
19 "db:stop": "docker stop annos-postgres",
20 "db:remove": "docker rm annos-postgres",
21 "db:generate": "drizzle-kit generate --schema=./src/modules/annotations/infrastructure/repositories/schema --out=./src/shared/infrastructure/database/migrations --dialect=postgresql && drizzle-kit generate --schema=./src/modules/user/infrastructure/repositories/schema --out=./src/shared/infrastructure/database/migrations --dialect=postgresql"
22 },
23 "keywords": [],
24 "author": "",
25 "license": "ISC",
26 "dependencies": {
27 "@atproto/api": "^0.15.2",
28 "@atproto/common": "^0.4.10",
29 "@atproto/identity": "^0.4.7",
30 "@atproto/lexicon": "^0.4.10",
31 "@atproto/oauth-client-node": "^0.2.15",
32 "@atproto/sync": "^0.1.20",
33 "@atproto/syntax": "^0.4.0",
34 "@atproto/xrpc-server": "^0.7.15",
35 "dotenv": "^16.5.0",
36 "express": "^5.1.0",
37 "jsonwebtoken": "^9.0.2",
38 "postgres": "^3.4.5",
39 "uuid": "^11.1.0"
40 },
41 "devDependencies": {
42 "@atproto/lex-cli": "^0.8.0",
43 "@flydotio/dockerfile": "^0.7.10",
44 "@testcontainers/postgresql": "^10.24.2",
45 "@types/express": "^5.0.1",
46 "@types/jest": "^29.5.14",
47 "@types/jsonwebtoken": "^9.0.9",
48 "@types/pg": "^8.11.13",
49 "@types/supertest": "^6.0.3",
50 "concurrently": "^9.1.2",
51 "drizzle-kit": "^0.31.1",
52 "drizzle-orm": "^0.43.1",
53 "jest": "^29.7.0",
54 "pg": "^8.14.1",
55 "playwright": "^1.40.0",
56 "supertest": "^7.1.0",
57 "testcontainers": "^10.24.2",
58 "ts-jest": "^29.3.2",
59 "tsconfig-paths": "^4.2.0",
60 "tsup": "^8.4.0",
61 "typescript": "^5.8.3"
62 }
63}