-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "FutabaBot",
"version": "1.0.0",
"main": "dist/FutabaBot.js",
"author": "secondubly",
"license": "MIT",
"imports": {
"#lib/*": "./dist/lib/*.js"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord.js-utilities": "6.0.3",
"@sapphire/framework": "^4.2.1",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/utilities": "^3.11.0",
"@skyra/env-utilities": "^1.1.0",
"colorette": "^2.0.19",
"discord.js": "^14.7.1",
"dotenv-cli": "^7.1.0",
"dotenv-flow": "^3.2.0"
},
"devDependencies": {
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^3.3.4",
"@types/node": "^18.15.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"prettier": "^2.8.4",
"prisma": "^4.11.0",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
},
"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\" --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 --onSuccess \"npm run start\""
}
}