-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) ยท 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) ยท 1.12 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
{
"name": "chaingram",
"version": "2.0.0",
"main": "dist/index.js",
"author": "Daniel Uhm <danieluhm2004@gmail.com>",
"license": "MIT",
"scripts": {
"serve": "yarn clean && cross-env NODE_ENV=development tsc-watch --onSuccess \"node .\"",
"clean": "rm -rf dist",
"start": "cross-env NODE_ENV=production node .",
"build": "yarn clean && tsc",
"setup": "node dist/setup.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"cross-env": "^7.0.3",
"got": "^11.8.2",
"lodash": "^4.17.21",
"random-useragent": "^0.5.0",
"remove-markdown": "^0.3.0",
"telegraf": "^4.4.2",
"turndown": "^7.1.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/eslint": "^7.28.2",
"@types/lodash": "^4.14.176",
"@types/random-useragent": "^0.3.1",
"@types/remove-markdown": "^0.3.1",
"@types/tsc-watch": "^4.2.0",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
}
}