-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "zodiacsigns-bsky",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "npx tsx src/main.ts",
"dev": "npx tsx --watch src/main.ts",
"format": "bunx prettier --write .",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint --fix ."
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/better-sqlite3": "^7.6.11",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.6",
"@types/ws": "^8.5.12",
"@types/express": "^4.17.21",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"@atproto/api": "^0.13.14",
"@skyware/jetstream": "^0.2.0",
"@skyware/labeler": "^0.1.13",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"prom-client": "^15.1.3"
}
}