forked from Piterden/chessbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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": "chessbot",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ext .js src",
"lint:fix": "eslint --fix --ext .js src",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -w src src/index.js"
},
"author": "Denis Efremov <efremov.a.denis@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:Piterden/chessbot.git"
},
"license": "MIT",
"dependencies": {
"chess": "^0.4.2",
"dotenv": "^7.0.0",
"knex": "^0.20.1",
"module-alias": "^2.2.2",
"mysql": "^2.17.1",
"pg": "^7.12.1",
"sequelize": "^5.21.2",
"telegraf": "^3.33.3"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"nodemon": "^1.19.4",
"sqlite3": "^4.1.0"
},
"_moduleAliases": {
"@": "./src"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}