-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 2.96 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
106
107
108
109
110
111
112
113
114
{
"name": "spectera",
"version": "0.5.0",
"description": "",
"main": "dist/Spectera.js",
"keywords": [],
"author": "UndiedGamer",
"license": "Apache-2.0",
"scripts": {
"pre": "yarn languages && node --enable-source-maps .",
"watch": "tsup --watch",
"test": "jest",
"languages": "node ./scripts/i18n.mjs",
"postinstall": "husky install .github/husky",
"build": "tsup",
"clean": "node scripts/clean.mjs",
"start": "yarn lint && yarn build && yarn pre",
"dev": "yarn lint && yarn build && run-p watch pre",
"docker:start": "yarn pre",
"check:lint": "prettier -c \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"lint": "prettier --write \"src/**/*.ts\"",
"predocker:watch": "yarn",
"docker:watch": "tsc-watch -b src --onSuccess \"node . --enable-source-maps\""
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"scope-case": [
2,
"always",
"pascal-case"
],
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
},
"dependencies": {
"@prisma/client": "3.15.2",
"@sapphire/decorators": "^6.0.2",
"@sapphire/discord.js-utilities": "^6.1.0",
"@sapphire/eslint-config": "4.4.3",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "next",
"@sapphire/phisherman": "^1.4.1",
"@sapphire/plugin-api": "^5.2.0",
"@sapphire/plugin-editable-commands": "^3.1.0",
"@sapphire/plugin-hmr": "^2.0.3",
"@sapphire/plugin-i18next": "^5.1.1",
"@sapphire/plugin-logger": "^3.0.7",
"@sapphire/plugin-subcommands": "^4.3.0",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/stopwatch": "1.5.0",
"@sapphire/time-utilities": "^1.7.10",
"@sapphire/ts-config": "3.3.4",
"@sapphire/type": "^2.4.1",
"@sapphire/utilities": "^3.13.0",
"@spectera/tag-parser": "^2.3.1",
"discord.js": "^13.17.1",
"dotenv-cra": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "17.8.1",
"@commitlint/config-angular": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "^27.5.2",
"@types/node": "16.18.65",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "^28.1.3",
"colorette": "2.0.20",
"eslint": "~8.54.0",
"husky": "8.0.3",
"jest": "^28.1.3",
"lint-staged": "12.5.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"pretty-quick": "^3.1.3",
"prisma": "3.15.2",
"reflect-metadata": "0.1.13",
"tsc-watch": "5.0.3",
"tsup": "^5.12.9",
"typescript": "^4.9.5"
},
"imports": {
"#structures/*": "./dist/lib/structures/*.js",
"#types/enums/*": "./dist/lib/types/enums/*.js",
"#types/interfaces/*": "./dist/lib/types/interfaces/*.js",
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js"
},
"packageManager": "[email protected]",
"prettier": "@sapphire/prettier-config"
}