generated from Lioness100/sapphire-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.85 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
{
"name": "arima",
"version": "0.1.0",
"description": "🎶 A music quiz discord bot designed for lightly competitive fun!",
"main": "dist/index.js",
"repository": "https://github.com/Lioness100/Arima",
"author": "Lioness100 <[email protected]>",
"license": "Apache-2.0",
"type": "module",
"private": true,
"imports": {
"#root/*": "./dist/*.js",
"#types/*": "./dist/lib/types/*.js",
"#structures/*": "./dist/lib/structures/*.js",
"#game/*": "./dist/lib/structures/game/*.js",
"#utils/*": "./dist/lib/utils/*.js",
"#database/*": "./dist/lib/database/*.js",
"#entities/*": "./dist/lib/database/entities/*.js"
},
"scripts": {
"pm2": "pm2 start pm2.ecosystem.yml",
"start": "node --enable-source-maps .",
"lint": "eslint src --ext js,ts --fix",
"format": "prettier --write \"src/**/*.[jt]s\"",
"update": "yarn upgrade-interactive",
"build": "tsup",
"watch": "tsup --watch",
"dev": "tsup --watch --onSuccess \"yarn start\"",
"typecheck": "tsc -b src",
"prepare": "husky install"
},
"dependencies": {
"@discordjs/builders": "0.13.0",
"@mikro-orm/core": "^5.1.4",
"@mikro-orm/mongodb": "^5.1.4",
"@sapphire/async-queue": "^1.3.1",
"@sapphire/decorators": "^4.3.6",
"@sapphire/discord.js-utilities": "^4.11.3",
"@sapphire/framework": "next",
"@sapphire/plugin-logger": "^2.2.1",
"@sapphire/stopwatch": "^1.4.1",
"@sapphire/time-utilities": "^1.7.4",
"@sapphire/type": "^2.2.4",
"@sapphire/utilities": "^3.7.0",
"@skyra/audio": "^2.0.0",
"@skyra/jaro-winkler": "^1.1.0",
"colorette": "^2.0.16",
"discord-api-types": "^0.33.0",
"discord.js": "^13.7.0",
"dotenv": "^16.0.1",
"envalid": "^7.3.1",
"fuse.js": "^6.6.2",
"node-cache": "^5.1.2",
"spotify-url-info": "^3.2.3",
"statcord.js": "^3.4.2",
"undici": "^5.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@sapphire/eslint-config": "^4.3.7",
"@sapphire/prettier-config": "^1.4.3",
"@sapphire/ts-config": "^3.3.4",
"@swc/core": "^1.2.194",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "^7.0.4",
"lint-staged": "^13.0.1",
"pm2": "^5.2.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"tsup": "^5.12.9",
"typescript": "^4.7.2"
},
"resolutions": {
"@discordjs/collection": "0.6.0"
},
"engines": {
"node": ">=16.6",
"npm": ">=7"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix --ext js,ts"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}