-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "watch_together",
"version": "0.1.0",
"description": "Telegram bot for selecting movies to watch together.",
"main": "dist/start.js",
"scripts": {
"init:db": "ts-node src/genDB.ts",
"reinit:db": "rm -f db/database.db && npm run init:db",
"start": "ts-node src/start.ts",
"start:dev": "DEBUG_OUTPUT=1 export $(cat .env | xargs) && npm run reinit:db && nodemon",
"build": "tsc",
"check": "tsc --noEmit",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"lint-format": "npm run lint && npm run format",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges"
},
"keywords": [
"tg-bot",
"watch-together"
],
"author": "Evgenii Guzhikhin",
"license": "MIT",
"dependencies": {
"node-telegram-bot-api": "^0.66.0",
"sqlite": "^5.1.0",
"sqlite3": "^5.1.7"
},
"engines": {
"npm": ">=9.8.0 <11",
"node": ">=20.5.1 <21"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^16.18.105",
"@types/node-telegram-bot-api": "^0.64.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"jest-coverage-badges": "^1.0.0",
"nodemon": "^3.1.4",
"prettier": "^2.8.8",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}