-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
59
60
61
62
63
{
"name": "opengram_bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "ava",
"precommit": "npm run lint && npm test && npm run remark",
"remark": "npx remark README.md --use remark-preset-lint-consistent --use remark-preset-lint-recommended",
"prepare": "husky install",
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js"
},
"ava": {
"files": [
"test/*"
]
},
"type": "commonjs",
"engines": {
"node": ">=16"
},
"author": "",
"license": "ISC",
"dependencies": {
"@opengram/media-group": "^1.0.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"fuse.js": "^6.6.2",
"i18next": "^22.5.0",
"i18next-fs-backend": "^2.1.2",
"markdown-to-txt": "^2.0.1",
"mongoose": "^7.2.0",
"node-fetch": "^2.6.11",
"opengram": "^0.3.1",
"telegram-escape": "^1.1.1",
"telegramify-markdown": "^1.1.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@jsdoc/eslint-config": "^1.2.0",
"ava": "^5.2.0",
"clean-jsdoc-theme": "^4.2.7",
"eslint": "^8.41.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^44.2.4",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"remark-cli": "^11.0.0",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.3"
}
}