-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.61 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
63
64
65
66
67
68
69
70
{
"name": "telegram-socket-bot",
"version": "0.1.0",
"description": "Telegram bot to establish connections between clients and Telegram over WebSocket protocol",
"main": "build/index.js",
"scripts": {
"DEV start": "yarn BUILD && concurrently -n TS,NODE -t HH:mm:ss \"tsc --watch\" \"nodemon ./build/ 3000\"",
"DEV tg-cli": "echo \"WIP\"",
"DEV serve": "node ./build/ 3000",
"DEV serve -w": "nodemon ./build/ 3000",
"TEST all": "jest tests/.*.test.tsx? --maxWorkers=4",
"TEST coverage": "jest tests/.*.test.tsx? --coverage --maxWorkers=4",
"TEST -w": "jest tests/.*.test.tsx? --watch",
"TEST unit": "jest tests/unit/.*.test.tsx?",
"TEST unit -w": "jest tests/unit/.*.test.tsx? --watch",
"TEST integration": "jest tests/integration/.*.test.tsx?",
"TEST integration -w": "jest tests/integration/.*.test.tsx? --watch",
"LINT": "eslint --ext .ts,.tsx",
"LINT fix": "eslint --fix --ext .ts,.tsx",
"BUILD": "shx rm -rf ./build && tsc",
"BUILD -w": "tsc --watch",
"BUILD image": "./scripts/docker-build.sh",
"BUILD push": "./scripts/docker-push.sh"
},
"keywords": [],
"author": {
"name": "Jonathan Mataloni",
"email": "jo.mataloni@gmail.com",
"url": "https://github.com/jonamat"
},
"license": "MIT",
"dependencies": {
"dedent-js": "^1.0.1",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.15",
"mysql2": "^2.2.5",
"node-telegram-bot-api": "^0.51.0",
"rate-limiter-flexible": "^2.2.1",
"socket.io": "^3.1.1",
"sqlstring": "^2.3.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/node-telegram-bot-api": "^0.51.0",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.35",
"@types/sqlstring": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"concurrently": "^5.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.3",
"nodemon": "^2.0.7",
"p-wait-for": "^3.2.0",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"socket.io-client": "^3.1.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}