-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "lichess-tg",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "knex migrate:latest"
},
"author": "kolay",
"repository": {
"type": "git",
"url": "git@github.com:kolay-v/lichess-tg.git"
},
"license": "MIT",
"dependencies": {
"amqplib": "^0.8.0",
"chess": "^0.4.9",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"knex": "^0.95.15",
"ndjson": "^2.0.0",
"node-fetch": "^2.6.1",
"pg": "^8.7.1",
"telegraf-develop": "^5.1.3"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.4",
"@types/node-fetch": "^2.5.12",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^3.1.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}