-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.31 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
39
40
41
42
{
"name": "bsky-follower-tracker",
"version": "1.1.0",
"description": "BlueSky Follower Tracking Application",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"start:server": "npm run build && node dist/server.js",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only --pretty --ignore-watch node_modules src/index.ts",
"server": "./kill-port.sh && npx ts-node-dev --respawn --transpile-only --pretty --ignore-watch node_modules src/server.ts",
"server:force": "./kill-port.sh && npx ts-node-dev --respawn --transpile-only --pretty --ignore-watch node_modules src/server.ts --force-import",
"kill-port": "./kill-port.sh"
},
"keywords": [
"bluesky",
"atprotocol",
"followers"
],
"author": "",
"license": "ISC",
"dependencies": {
"@atproto/api": "latest",
"@atproto/oauth-client-node": "^0.4.2",
"cli-progress": "^3.12.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.21.2",
"mongodb": "^5.6.0",
"mongoose": "^8.9.5",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@types/socket.io": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
}
}