-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "videonotifier",
"module": "src/index.ts",
"type": "module",
"version": "1.3.0",
"devDependencies": {
"@types/bun": "1.2.10",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/pg": "^8.11.14",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"concurrently": "^9.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unused-imports": "4.1.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"dev": "bun --watch . --dev",
"test:site": "bun --watch src/web/web.ts",
"test:jetstream": "bun --watch src/utils/bluesky/jetstream.ts",
"lint": "eslint . --ext .ts -c .eslintrc.json",
"lint:fix": "eslint . --ext .ts -c .eslintrc.json --fix"
},
"dependencies": {
"cors": "^2.8.5",
"cron": "^3.2.1",
"discord.js": "^14.19.1",
"express": "^5.1.0",
"pg": "^8.15.6"
}
}