forked from bluesky-social/feed-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "bsky-apps",
"version": "1.0.0",
"description": "Various Bluesky integrations",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rabidaudio/bsky-apps.git"
},
"author": "Julien <cjk@rabidaudiop.com>",
"license": "MIT",
"scripts": {
"publishFeed": "ts-node scripts/publishFeedGen.ts",
"migrate": "ts-node scripts/migrate.ts",
"start": "ts-node src/index.ts start",
"app": "ts-node src/index.ts",
"start:prod": "node dist start",
"build": "tsc",
"test": "mocha test test/**/*.spec.cjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@atproto/api": "^0.6.20",
"@atproto/identity": "^0.2.1",
"@atproto/lexicon": "^0.2.2",
"@atproto/repo": "^0.3.2",
"@atproto/syntax": "^0.1.2",
"@atproto/xrpc-server": "^0.3.2",
"basic-auth": "^2.0.1",
"better-sqlite3": "^8.3.0",
"dayjs": "^1.11.9",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"kysely": "^0.22.0",
"multiformats": "^9.9.0",
"pg": "^8.11.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/express": "^4.17.17",
"@types/node": "^20.1.2",
"@types/pg": "^8.10.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"mocha": {
"require": "ts-node/register"
},
"bugs": {
"url": "https://github.com/rabidaudio/bsky-apps/issues"
},
"homepage": "https://github.com/rabidaudio/bsky-apps#readme"
}