-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 824 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 824 Bytes
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
{
"name": "inline_editor_bot",
"version": "0.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"migrate": "npm run migrate:up",
"migrate:up": "knex migrate:latest",
"migrate:down": "knex migrate:rollback",
"migrate:refresh": "knex migrate:rollback && knex migrate:latest",
"lint": "eslint --ext .js,json --fix .",
"lint:fix": "eslint --ext .js,.json .",
"dev": "nodemon -V src/index.js",
"watch": "nodemon -e js,json -w . -V src/index.js",
"preinstall": "npx npm-force-resolutions"
},
"author": "Denis Efremov <efremov.a.denis@gmail.com>",
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"knex": "^0.95.7",
"mysql2": "^2.2.5",
"nodemon": "^2.0.12",
"telegraf": "^3.39.0"
},
"devDependencies": {
"eslint": "^7.31.0"
}
}