-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "trex-gamebot",
"version": "1.0.0",
"description": "Telegram bot to play classic Chrome Dino game",
"keywords": [
"telegram",
"bot",
"game",
"dino chrome game",
"t-rex chrome game"
],
"author": "Autapomorph (https://github.com/Autapomorph)",
"repository": {
"type": "git",
"url": "https://github.com/Autapomorph/trex-gamebot.git"
},
"bugs": {
"url": "https://github.com/Autapomorph/trex-gamebot/issues"
},
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"scripts": {
"start": "cross-env NODE_ENV=development npm run watch",
"serve": "cross-env NODE_ENV=production npm run watch",
"start:api": "cross-env NODE_ENV=development npm run watch:api",
"serve:api": "cross-env NODE_ENV=production npm run watch:api",
"watch": "nodemon src/index.js -e js,mjs,json,yaml",
"watch:api": "nodemon api/score.js -e js,mjs,json,yaml",
"lint": "eslint .",
"lint:staged": "lint-staged --relative",
"prepare": "is-ci || (husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks)"
},
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"express-jwt": "^7.7.2",
"http-errors": "^2.0.0",
"is-ci": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"shx": "^0.3.4",
"telegraf": "^4.8.3",
"telegraf-ratelimit": "^2.0.0",
"telegraf-update-logger": "^1.5.0",
"winston": "^3.7.2",
"winston-transport-sentry-node": "^2.3.0"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"ignore": "^5.2.0",
"lint-staged": "^12.4.2",
"nodemon": "^2.0.16",
"prettier": "^2.6.2"
}
}