-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
44
45
46
47
48
{
"name": "twitter-verse-bot",
"version": "1.0.0",
"description": "Twitter Verse Bot, to tweet Bible verses every Sunday Morning at 8:30am.",
"main": "public/app.js",
"scripts": {
"test": "jest",
"tsc": "tsc",
"dev": "nodemon public/app.js",
"start": "node public/app.js",
"build": "tsc",
"format": "prettier --write '{src, test}/**/*.ts'"
},
"author": "Emmanuel Okuchukwu ([email protected])",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/cron": "^2.0.1",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.195",
"@types/twit": "^2.2.31",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"cron": "^2.3.1",
"dotenv": "^16.3.1",
"exponential-backoff": "^3.1.1",
"express": "^4.18.2",
"inversify": "^6.0.1",
"kafka-node": "^5.0.0",
"lodash": "^4.17.21",
"mongoose": "^7.3.0",
"ts-retrofit": "^1.19.0",
"twit": "^2.2.11",
"twitter-api-v2": "^1.15.0",
"uuidv4": "^6.2.13"
},
"jest": {
"verbose": true
}
}