forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@atproto/pds",
"version": "0.1.3",
"license": "MIT",
"main": "src/index.ts",
"bin": "dist/bin.ts",
"scripts": {
"codegen": "lex gen-server ./src/lexicon ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/*",
"build": "node ./build.js",
"postbuild": "tsc --build tsconfig.build.json",
"start": "node dist/bin.js",
"test": "jest",
"test:pg": "../pg/with-test-db.sh yarn test",
"test:log": "tail -50 test.log | pino-pretty",
"test:updateSnapshot": "jest --updateSnapshot",
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"verify": "run-p prettier lint",
"verify:fix": "yarn prettier:fix && yarn lint:fix",
"migration:create": "ts-node ./bin/migration-create.ts",
"update-main-to-dist": "node ./update-pkg.js --update-main-to-dist",
"update-main-to-src": "node ./update-pkg.js --update-main-to-src",
"prepublish": "npm run update-main-to-dist",
"postpublish": "npm run update-main-to-src"
},
"dependencies": {
"@atproto/api": "*",
"@atproto/common": "*",
"@atproto/crypto": "*",
"@atproto/did-resolver": "*",
"@atproto/identifier": "*",
"@atproto/lexicon": "*",
"@atproto/repo": "*",
"@atproto/uri": "*",
"@atproto/xrpc-server": "*",
"@did-plc/lib": "^0.0.1",
"better-sqlite3": "^7.6.2",
"bytes": "^3.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"file-type": "^16.5.4",
"handlebars": "^4.7.7",
"http-errors": "^2.0.0",
"http-terminator": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"kysely": "^0.22.0",
"multiformats": "^9.6.4",
"nodemailer": "^6.8.0",
"nodemailer-html-to-text": "^3.2.0",
"p-queue": "^6.6.2",
"pg": "^8.8.0",
"pino": "^8.6.1",
"pino-http": "^8.2.1",
"sharp": "^0.31.2",
"typed-emitter": "^2.1.0",
"uint8arrays": "3.0.0"
},
"devDependencies": {
"@atproto/api": "*",
"@atproto/lex-cli": "*",
"@did-plc/server": "^0.0.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.6",
"@types/pg": "^8.6.5",
"@types/sharp": "^0.31.0",
"axios": "^0.27.2"
}
}