-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "doctor-large",
"version": "1.0.0",
"description": "He's here.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"prebuild": "npx rimraf dist",
"build": "tsc",
"precommands:clear": "npm run build",
"commands:clear": "node -r dotenv/config scripts/clear-commands.js",
"precommands:put": "npm run build",
"commands:put": "node -r dotenv/config scripts/put-commands.js",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"lint:fix": "eslint src/** --ext .ts --fix",
"lint": "eslint src/** --ext .ts",
"prestart": "npm run build",
"start": "node -r dotenv/config ."
},
"engines": {
"node": ">=16.11.0"
},
"author": "Brage",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.1.1",
"common-tags": "^2.0.0-alpha.1",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"ms": "^2.1.3"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/eslint": "^8.44.2",
"@types/ms": "^0.7.31",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"discord-api-types": "^0.37.54",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-perfectionist": "^2.2.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"eslint": "^8.47.0",
"prettier": "^3.0.2",
"prisma": "^5.1.1",
"typescript": "^5.1.6"
},
"imports": {
"#discord-components": "./dist/discord-components/index.js",
"#constants": "./dist/constants.js",
"#database/*": "./dist/database/*",
"#helpers": "./dist/helpers/index.js",
"#logger": "./dist/logger/logger.js",
"#modules/*": "./dist/modules/*",
"#scripts/*": "./dist/scripts/*",
"#typings": "./dist/typings/index.d.js"
}
}