-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "comics-bot",
"version": "0.0.1",
"main": "index.js",
"author": "Guy Incognito a.k.a ynhhoJ",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --watch",
"dev:watch": "concurrently \"nodemon ./build/index.js\" \"yarn dev\"",
"build": "cross-env NODE_ENV=production webpack"
},
"dependencies": {
"axios": "^0.21.1",
"lodash": "^4.17.21",
"node-html-parser": "3.3.5",
"sequelize": "^6.6.2",
"telegraf": "^4.3.0",
"typegram": "^3.3.1"
},
"devDependencies": {
"@babel/core": "7.14.5",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.5",
"@babel/preset-typescript": "^7.13.0",
"@types/dotenv-webpack": "7.0.2",
"@types/lodash": "4.14.170",
"@types/node": "15.12.2",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/webpack-node-externals": "^2.5.1",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"babel-loader": "^8.2.2",
"concurrently": "6.2.0",
"cross-env": "^7.0.3",
"dotenv-webpack": "^7.0.2",
"eslint": "7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-hardcore": "19.6.2",
"eslint-plugin-import": "2.23.4",
"nodemon": "^2.0.7",
"terser-webpack-plugin": "5.1.3",
"ts-node": "^10.0.0",
"typescript": "4.3.2",
"webpack": "5.38.1",
"webpack-cli": "4.7.2",
"webpack-node-externals": "3.0.0"
}
}