-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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
{
"name": "crawler_bot",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@types/express": "^4.16.0",
"@types/request-promise": "^4.1.39",
"babel-register": "^6.26.0",
"body-parser": "^1.18.3",
"bottlejs": "^1.7.1",
"cheerio": "^1.0.0-rc.2",
"cls-hooked": "^4.2.2",
"express": "^4.16.3",
"localtunnel": "^1.9.0",
"mongoose": "^5.1.4",
"node-telegram-bot-api": "^0.50.0",
"promise-retry": "^1.1.1",
"request": "^2.87.0",
"ts-node": "^7.0.1",
"typescript": "^4.0.0",
"winston": "^3.2.1"
},
"scripts": {
"build": "tsc -p src/js && fable-splitter src -o build --commonjs",
"start": "node build/Start.js",
"dev": "node_modules/.bin/nodemon -e ts -w . start.js",
"lint": "tslint -c tslint.json '**/*.ts'",
"test": "webpack --config test/webpack.test.config.js && mocha test/bin/bundle.js"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"ava": "^3.15.0",
"fable-compiler": "^2.3.19",
"fable-loader": "^2.1.8",
"fable-splitter": "^2.1.10",
"js-mock": "^1.0.2",
"mocha": "^7.1.1",
"ngrok": "^3.4.0",
"nodemon": "^2.0.7",
"tslint": "^5.12.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}