-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.64 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
{
"name": "riz-bot",
"version": "2.2.0",
"private": true,
"description": "Rizowski's discord server bot",
"main": "src/index.js",
"workspaces": [
"packages/*",
"."
],
"scripts": {
"lint:fix": "npm run lint -- --fix",
"lint": "xo . --quiet",
"local": "doppler run -c dev -- nodemon .",
"start": "node .",
"update:commands:dev": "doppler run -c dev -- node commands.js",
"update:commands:prod": "doppler run -c prod -- node commands.js"
},
"author": "Colten Rouska",
"license": "MIT",
"engines": {
"node": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"xo": {
"prettier": true,
"space": true,
"plugins": [
"unicorn"
],
"rules": {
"unicorn/no-reduce": "off",
"unicorn/no-fn-reference-in-iterator": "off",
"unicorn/prevent-abbreviations": "off",
"import/no-anonymous-default-export": "off"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
],
"*.{js,json,css,md,ts}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@discordjs/rest": "^0.3.0",
"discord-api-types": "^0.27.0",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.6",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"xo": "^0.38.2"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@local/discord": "workspace:packages/discord",
"@local/logger": "workspace:packages/logger",
"@local/responses": "workspace:packages/responses",
"config": "^3.3.6",
"lodash.snakecase": "^4.1.1"
}
}