-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "captcha_only_bot",
"version": "0.1.0",
"description": "Bot admin captcha",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"watch": "pm2 start --watch . -n captc src/index.js",
"lint": "eslint --ext .js -c .eslintrc.yml .",
"lint:fix": "eslint --ext .js --fix -c .eslintrc.yml .",
"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 <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:Piterden/captcha_only_bot.git"
},
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"knex": "^0.19.5",
"module-alias": "^2.2.1",
"mysql2": "^2.1.0",
"telegraf": "^3.34.1"
},
"devDependencies": {
"@atomix/eslint-config": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^7.0.0",
"husky": "^3.1.0",
"prettier": "^1.19.1"
},
"_moduleAliases": {
"@": "./src"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}