-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
60
61
62
{
"name": "readlaterbot",
"version": "1.0.0",
"description": "bot that saves post to read later",
"main": "dist/index.js",
"type": "commonjs",
"private": "true",
"scripts": {
"dev": "npm run eslint && npm run nodemon",
"start": "node dist/index.js",
"nodemon": "npx nodemon dist/index.js",
"eslint": "npx eslint --cache --fix src",
"doc": "npx jsdoc -c jsdoc.json",
"ts": "npx tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orin220444/readlaterbot.git"
},
"author": "orin220444",
"license": "MIT",
"bugs": {
"url": "https://github.com/orin220444/readlaterbot/issues"
},
"homepage": "https://github.com/orin220444/readlaterbot#readme",
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@postlight/mercury-parser": "^2.2.0",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"json-csv": "^3.0.1",
"luxon": "^1.25.0",
"mongoose": "^5.10.11",
"mongoose-fuzzy-searching": "^1.3.1",
"mongoose-random": "^0.1.1",
"telegraf": "^4.2.1",
"telegraph-node": "^1.0.4"
},
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/luxon": "^1.25.0",
"@types/mongoose": "^5.7.36",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.1",
"eslint-config-google": "^0.14.0",
"husky": "^4.3.0",
"jsdoc": "^3.6.6",
"lint-staged": "^10.5.0",
"nodemon": "^2.0.6",
"ts-migrate": "^0.1.7",
"typescript": "^4.0.3"
}
}