-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.58 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
{
"name": "@birthdayybot/util",
"version": "1.0.0",
"author": "@swiizyy",
"license": "Apache-2.0",
"private": true,
"main": "dist/main.js",
"type": "module",
"imports": {
"#api/*": "./dist/api/*.js",
"#lib/*": "./dist/lib/*.js"
},
"scripts": {
"build": "tsc -b src",
"dev": "yarn build && yarn start",
"watch": "tsc -b src -w",
"prisma:generate": "yarn prisma generate",
"start": "node --enable-source-maps dist/main.js",
"test": "eslint --ext ts src",
"lint": "eslint --fix --ext ts src",
"format": "prettier --write --loglevel=warn \"src/**/*.{js,ts,json}\"",
"update": "yarn upgrade-interactive",
"postinstall": "husky install .github/husky"
},
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/collection": "^1.5.1",
"@discordjs/core": "^0.6.0",
"@prisma/client": "^5.12.1",
"@sapphire/async-queue": "^1.5.0",
"@sapphire/duration": "^1.1.0",
"@sapphire/result": "^2.6.4",
"@sapphire/utilities": "^3.13.0",
"@skyra/env-utilities": "^1.2.1",
"@skyra/http-framework": "^1.0.3",
"@skyra/http-framework-i18n": "^1.0.2",
"@skyra/logger": "^2.0.1",
"@skyra/shared-http-pieces": "^1.0.3",
"@skyra/start-banner": "^2.0.0",
"discord-api-types": "^0.37.43",
"fastify": "^4.26.2",
"gradient-string": "^2.0.2",
"limax": "^4.1.0",
"tslib": "^2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@sapphire/eslint-config": "^5.0.0",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^4.0.1",
"@types/gradient-string": "^1.1.2",
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"prisma": "^5.12.1",
"typescript": "^5.1.6"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"engines": {
"node": ">=18.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"eslintConfig": {
"extends": "@sapphire",
"rules": {
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/no-unsafe-call": "off"
}
},
"packageManager": "yarn@3.6.1",
"volta": {
"node": "18.17.0",
"yarn": "3.6.1"
}
}