-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.69 KB
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
{
"name": "FutabaBot",
"version": "1.0.0",
"main": "dist/FutabaBot.js",
"author": "secondubly",
"license": "MIT",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/util/*.js"
},
"dependencies": {
"@prisma/client": "^4.16.2",
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord.js-utilities": "6.0.3",
"@sapphire/duration": "^1.1.0",
"@sapphire/framework": "^4.2.1",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-subcommands": "^4.0.2",
"@sapphire/utilities": "^3.11.0",
"@skyra/env-utilities": "^1.2.1",
"colorette": "^2.0.19",
"discord.js": "^14.13.0",
"dotenv-cli": "^7.1.0",
"dotenv-flow": "^3.2.0"
},
"devDependencies": {
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^5.0.0",
"@types/node": "^18.15.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"prisma": "^4.16.2",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc -b src",
"dev": "npm run build && npm run dev:start",
"dev:start": "dotenv -e src/.env.development.local node dist/FutabaBot.js",
"format": "prettier --ignore-path src/.prettierignore --config src/.prettierrc --write \"src/\"",
"lint": "eslint --ignore-path \"src/.eslintignore\" -c \"src/.eslintrc\" --ext .js,.ts .",
"prisma": "node ./scripts/prisma.js",
"start:docker": "prisma migrate deploy && node dist/FutabaBot.js",
"start": "node dist/FutabaBot.js",
"watch": "tsc -b src -w",
"watch:start": "tsc-watch -b src --onSuccess \"npm run start\""
}
}