-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 840 Bytes
/
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
{
"name": "invaders.bot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"start:dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.717.0",
"@farcaster/hub-nodejs": "^0.12.7",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"mongodb": "^6.12.0",
"node-cron": "^3.0.3"
}
}