-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "twitter-pics-bot",
"version": "3.0.1",
"description": "",
"main": "app.js",
"scripts": {
"start": "node dist/app.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"watch-js": "nodemon ./dist/app.js",
"develop": "concurrently -i -k -p \"[{name}]\" -n \"Node, TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\""
},
"keywords": [],
"type": "commonjs",
"engines": {
"node": ">=13.5"
},
"repository": {
"type": "git",
"url": "github:ejnshtein/twitterpicsbot"
},
"author": "ejnshtein",
"license": "MIT",
"dependencies": {
"@telegraf/core": "^1.1.0",
"@typegoose/typegoose": "^7.2.0",
"@yarnaimo/twimo": "^4.1.3",
"cheerio": "^1.0.0-rc.3",
"date-fns": "^2.14.0",
"date-fns-timezone": "^0.1.4",
"dotenv": "^8.2.0",
"dotenv-parse-variables": "^0.3.1",
"effector": "^21.0.3",
"effector-esm": "^1.0.0",
"module-alias": "^2.2.2",
"mongodb": "^3.5.9",
"mongoose": "^5.9.17",
"node-schedule": "^1.3.2",
"telegraf": "^3.38.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/eslint": "^7.2.0",
"@types/mongodb": "^3.5.20",
"@types/mongoose": "^5.7.24",
"@types/node-schedule": "^1.3.0",
"@types/twitter": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-plugin-add-import-extension": "^1.4.1",
"concurrently": "^5.2.0",
"nodemon": "^2.0.4",
"standard": "^14.3.4",
"twitter-d": "^0.4.0",
"typescript": "^3.9.5"
}
}