-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.57 KB
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
{
"name": "whatsplayingbot",
"type": "module",
"version": "0.0.1",
"description": "Last.fm bot for Telegram",
"author": "Lewis Chan",
"license": "MIT",
"homepage": "https://github.com/lwschan/whats-playing-bot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lwschan/whats-playing-bot.git"
},
"bugs": {
"url": "https://github.com/lwschan/whats-playing-bot/issues"
},
"main": "./src/index.ts",
"scripts": {
"build": "tsc",
"debug": "NODE_ENV=development ts-node --esm --experimental-specifier-resolution=node ./src/index.ts",
"prepare": "husky install",
"prettier": "prettier --config .prettierrc.json --write \"src/**/*{.ts,.js}\"",
"start": "NODE_ENV=production node --es-module-specifier-resolution=node ./build/index.js"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/node-telegram-bot-api": "^0.57.6",
"dotenv": "^16.0.3",
"node-fetch": "^3.3.0",
"node-telegram-bot-api": "^0.60.0",
"redis": "^4.5.1"
},
"lint-staged": {
"*.{js,ts}": "eslint . --ext .js,.ts"
},
"packageManager": "yarn@3.2.4"
}