-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "codebattle_bot",
"version": "0.0.1",
"description": "Codebattle bot for subscribe Games/Tournaments updates in real time and create/join battles with another users",
"main": "app/index.js",
"scripts": {
"start": "node dist/index.js",
"start:health": "node dist/health.js",
"build": "babel app -d dist",
"prettier": "prettier --write app/**/*.js",
"lint": "eslint --cache app/",
"lint:write": "eslint --write app/**/*.js",
"setup": "yarn",
"prepare": "husky",
"test": "jest"
},
"jest": {
"verbose": true
},
"repository": "git@github.com:hexlet-codebattle/codebattle_bot",
"author": "ReDBrother <bataevdmitriy@gmail.com>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.19.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"app/**/*.js": [
"yarn run lint:write",
"git add"
]
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"husky": "^9.0.10",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"dependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/node": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"babel-jest": "^29.7.0",
"babel-plugin-lodash": "^3.3.4",
"discord.js": "^14.14.1",
"dotenv": "^16.4.1",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"objection": "^3.1.3",
"pg": "^8.11.3",
"phoenix": "1.7.10",
"sqlite3": "^5.1.7",
"telegraf": "^4.15.3",
"winston": "^3.11.0",
"ws": "^8.16.0"
}
}