-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "ttrpglabeler-eventhandler",
"version": "1.0.0",
"description": "Event handler for the TTRPGLabeler",
"main": "index.js",
"repository": "git@github.com:TheRipperoni/TtrpgHandler.git",
"author": "Ripperoni",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest",
"migrate": "ts-node scripts/migrateTtrpg.ts"
},
"dependencies": {
"@atproto/api": "^0.12.24",
"@atproto/identity": "^0.4.0",
"@atproto/lexicon": "^0.4.0",
"@atproto/repo": "^0.4.1",
"@atproto/syntax": "^0.3.0",
"@atproto/xrpc-server": "^0.5.2",
"atproto-firehose": "^0.2.2",
"better-sqlite3": "^11.1.1",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"kysely": "^0.27.3",
"multiformats": "^9.9.0",
"ts-postgres": "^2.0.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/better-sqlite3": "^7.6.10",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}