-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.57 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
52
53
54
55
56
57
58
{
"name": "syntaxhighlightbot",
"version": "2.0.0-001-alpha",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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,.mjs .",
"dev": "nodemon -V index.js",
"watch": "nodemon -e js,mjs,json -w . -V index.js",
"preinstall": "npx npm-force-resolutions"
},
"author": "Denis Efremov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Piterden/syntax-highlighter-bot.git"
},
"license": "MIT",
"dependencies": {
"@pm2/io": "^3.1.1",
"dotenv": "^6.0.0",
"graceful-fs": "^4.2.3",
"highlight.js": "^10.4.1",
"knex": "^0.20.1",
"language-classifier": "0.0.1",
"mysql2": "^2.1.0",
"nodemon": "^2.0.2",
"prismjs": "^1.25.0",
"puppeteer": "^2.1.1",
"telegraf": "^3.34.1",
"yaml": "^1.7.2"
},
"devDependencies": {
"@atomix/eslint-config": "^7.1.0",
"eslint": "^5.16.0",
"eslint-config-node": "^4.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-unicorn": "^7.1.0",
"husky": "^3.1.0",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"type": "module",
"resolutions": {
"graceful-fs": "4.2.3"
}
}