generated from Namchee/liby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "covid19-line-bot",
"version": "1.0.0",
"description": "An educational LINE chatbot about COVID-19 status in Indonesia",
"main": "index.js",
"scripts": {
"lint": "eslint src/**/*.ts api/**/*.ts",
"hospital": "tsc ./src/scripts/scraper.ts --esModuleInterop && node ./src/scripts/scraper.js",
"rich-menu": "tsc ./src/scripts/rich-menu.ts --esModuleInterop && node ./src/scripts/rich-menu.js",
"refresh": "rm -rf node_modules/ dist/ build/ && npm i"
},
"keywords": [
"chatbot",
"line",
"eslint",
"typescript"
],
"author": "Namchee",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^6.1.8",
"@types/ioredis": "^4.14.9",
"@types/superagent": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^22.1.0",
"rimraf": "^3.0.2",
"ts-node": "^8.7.0",
"typescript": "^3.8.3",
"typesync": "^0.6.1"
},
"dependencies": {
"@line/bot-sdk": "^6.8.4",
"@now/node": "^1.6.1",
"date-fns": "^2.11.0",
"date-fns-tz": "^1.0.10",
"ioredis": "^4.16.0",
"superagent": "^5.2.2"
}
}