-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "store77-price-bot-telegram",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "ISC",
"devDependencies": {
"@types/cls-hooked": "^4.3.0",
"@types/node": "^14.0.24",
"@types/node-telegram-bot-api": "^0.56.2",
"@types/request-promise": "^4.1.46",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"rimraf": "~3.0",
"typescript": "^4.2.4"
},
"scripts": {
"start": "node built/index.js",
"clean": "rimraf coverage built tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts",
"dev": "npm run clean && npm run build && npm run start"
},
"author": "",
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.10",
"cls-hooked": "^4.2.2",
"cron": "^1.8.2",
"dotenv": "^16.0.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"moment": "^2.29.3",
"mysql2": "^3.9.3",
"node-telegram-bot-api": "^0.57.0",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"puppeteer": "^13.6.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.22.4",
"sequelize-typescript": "^1.1.0"
},
"_moduleAliases": {
"@helpers": "built/helpers",
"@config": "built/config",
"@models": "built/models",
"@services": "built/services",
"@commands": "built/commands",
"@entity": "built/entity",
"@functions": "built/functions"
}
}