-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "moveer",
"version": "1.0.0",
"description": "A discord bot, that can move users! ",
"keywords": [
"moveer",
"discord.js",
"bot",
"discord"
],
"author": "Oscar Andersson",
"repository": {
"type": "git",
"url": "git+https://github.com/anderssonoscar0/Moveer"
},
"scripts": {
"update-commands": "node ./build/bin/deploy-commands.js",
"build": "rm -rf build && tsc",
"dev": "npm run build && node ./build/bot.js",
"start": "nodemon --exec node --loader ts-node/esm/transpile-only src/bot.ts",
"serve": "node build/main.js",
"lint": "eslint ."
},
"dependencies": {
"@types/express": "^4.17.13",
"amqplib": "^0.10.0",
"discord.js": "^14.1.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"knex": "^2.4.0",
"pg": "^8.7.3",
"pino": "^8.1.0",
"topgg-autoposter": "^2.0.1"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/node": "^18.0.0",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=18.1.0",
"npm": ">=8.1.0"
}
}