-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"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",
"migrate:make": "knex migrate:make",
"migrate": "npm run migrate:up",
"migrate:up": "knex migrate:latest",
"migrate:down": "knex migrate:rollback",
"migrate:refresh": "knex migrate:rollback && knex migrate:latest"
},
"author": "Denis Efremov <efremov.a.denis@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:Piterden/chessbot.git"
},
"license": "MIT",
"dependencies": {
"chess": "^0.4.9",
"dotenv": "^7.0.0",
"knex": "^2.5.1",
"module-alias": "^2.2.2",
"mysql2": "^2.2.5",
"pg": "^8.7.3",
"telegraf": "^3.37.0"
},
"devDependencies": {
"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",
"nodemon": "^2.0.7"
},
"_moduleAliases": {
"@": "./src"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}