-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "covid19liveupdates",
"version": "3.0.1",
"description": "Get latest info about COVID-19 (coronavirus) situation around the world and in your country",
"main": "index.js",
"scripts": {
"release:production-iam-sure": "npm run build && cd infrastructure/ && prod.release.bat covid19livebot",
"release:demo": "npm run build && cd infrastructure/ && release.bat demo-covid19livebot",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"build": "webpack --config webpack.config.js",
"start:watch": "ts-node-dev --respawn --transpileOnly server/src/index.ts",
"start:inspect": "ts-node-dev --inspect --respawn --transpileOnly server/src/index.ts",
"tslint": "tslint \"server/src/**/*.ts\"",
"tslint:fix": "tslint \"server/src/**/*.ts\" --fix"
},
"homepage": "https://github.com/danbilokha/covid19liveupdates",
"bugs": {
"url": "https://github.com/danbilokha/covid19liveupdates/issues",
"email": "[email protected]"
},
"author": "Danylo Bilokha, Julia Melnychenko, Vovi Kovi",
"license": "ISC",
"dependencies": {
"@types/node": "^13.9.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"country-code-lookup": "0.0.17",
"country-emoji": "^1.5.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.13.2",
"i18n": "^0.9.0",
"ngrok": "^3.2.7",
"node-cache": "^5.1.0",
"node-schedule": "^1.3.2",
"node-telegram-bot-api": "^0.40.0",
"node-telegram-keyboard-wrapper": "^2.0.1",
"node-url-shortener": "^1.0.1",
"nodemon": "^2.0.2",
"stringify-object": "^3.3.0",
"table": "^5.4.6",
"viber-bot": "^1.0.16",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2",
"winston": "^3.2.1",
"winston-loggly-bulk": "^3.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/node-telegram-bot-api": "^0.40.3",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"coveralls": "^3.0.11",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"mocha": "^7.1.0",
"prettier": "2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.1",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"keywords": [
"covid19",
"coronavirus"
],
"contributors": [
{
"name": "Julia Melnychenko",
"email": "[email protected]",
"url": "https://github.com/jmelnich"
},
{
"name": "Vladimir Kovalenko",
"email": "[email protected]",
"url": "https://github.com/Proladge"
},
{
"name": "Danylo Bilokha",
"email": "[email protected]",
"url": "https://github.com/danbilokha"
}
],
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"moduleDirectories": [
"node_modules",
"server"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/**/*.test.(ts|js)"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/coverage/**",
"!**/webpack.config.js"
]
}
}