forked from TediCross/TediCross
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.08 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
{
"name": "tedicross",
"version": "0.9.11",
"description": "Better DiteCross",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TediCross/TediCross.git"
},
"scripts": {
"start": "node main.js",
"start-dev": "nodemon main.js -i data/",
"lint": "eslint ."
},
"dependencies": {
"discord.js": "^11.5.1",
"js-yaml": "^3.13.1",
"mime": "^2.4.4",
"moment": "^2.24.0",
"ramda": "^0.26.1",
"request": "^2.88.0",
"simple-markdown": "^0.4.4",
"telegraf": "^3.32.0",
"yargs": "^13.3.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"nodemon": "^2.0.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"linebreak-style": "error",
"quotes": "error",
"semi": "error",
"no-var": "error",
"prefer-const": "error"
}
}
}