-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "bot-template",
"version": "1.0.0",
"description": "A discord bot template",
"main": "build/index.js",
"repository": "git@github.com:NewCircuit/project-bot.git",
"author": "Matthew Bakhtiari <dev@mtbk.me>",
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.4.0",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"typescript": "^4.3.5"
},
"dependencies": {
"@sapphire/decorators": "next",
"@sapphire/framework": "next",
"@sapphire/plugin-editable-commands": "next",
"@sapphire/plugin-logger": "next",
"@sapphire/plugin-subcommands": "next",
"discord.js": "^13.1.0",
"js-yaml": "^4.1.0",
"pg": "^8.6.0",
"postgres-migrations": "^5.3.0"
},
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"dev": "yarn build && yarn start"
}
}