-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
105 lines (105 loc) · 2.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "testaustime-bot",
"version": "1.0.0",
"description": "Discord bot for Testaustime",
"author": "Antti <[email protected]>",
"private": true,
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node -r dotenv/config --es-module-specifier-resolution=node .",
"deploy": "node -r dotenv/config --es-module-specifier-resolution=node src/scripts/deploy.js",
"lint": "yarn eslint src --fix --ext js",
"format": "yarn prettier --write .",
"update": "yarn upgrade-interactive --latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Testaustime/testaustime-bot.git"
},
"bugs": {
"url": "https://github.com/Testaustime/testaustime-bot/issues"
},
"homepage": "https://github.com/Testaustime/testaustime-bot#readme",
"engines": {
"node": ">=18"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": "eslint --fix --ext js"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
},
"eslintConfig": {
"env": {
"es2021": true,
"node": true
},
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-console": "off",
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"import/prefer-default-export": "off",
"import/no-default-export": "error"
},
"overrides": [
{
"files": [
"src/events/*"
],
"rules": {
"import/no-default-export": "off"
}
}
]
},
"dependencies": {
"@napi-rs/canvas": "^0.1.51",
"bent": "^7.3.12",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
}
}