-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "scala-feed",
"version": "1.0.0",
"description": "atproto feed for everything related to Scala ecosystem",
"main": "index.js",
"repository": "[email protected]:polyvariant/bsk-scala-feed.git",
"author": "majk-p <[email protected]>",
"license": "MIT",
"scripts": {
"publishFeed": "ts-node scripts/publishFeedGen.ts",
"unpublishFeed": "ts-node scripts/unpublishFeedGen.ts",
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:lint": "eslint ."
},
"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.6.0",
"better-sqlite3": "^11.3.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"kysely": "^0.27.4",
"multiformats": "^9.9.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.14",
"@types/node": "^20.1.2",
"inquirer": "^12.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 18",
"yarn": "1"
}
}