-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.01 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
{
"name": "discord-bot",
"version": "0.1.0",
"author": "Audiovisuaali",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "nodemon --ignore './logs/' --ext ts,json --exec babel-node --extensions '.ts' -r dotenv/config app/index.ts | ./node_modules/.bin/bunyan",
"dev:debug": "DEBUG=knex:query nodemon --ext ts,json --exec babel-node --extensions '.ts' -r dotenv/config app/index.ts | ./node_modules/.bin/bunyan",
"lint": "eslint . --ext ts,js",
"build": "tsc",
"typescript-check": "tsc --skipLibCheck --noEmit",
"database:migrate:latest": "knex migrate:latest",
"database:migrate:down": "knex migrate:down"
},
"dependencies": {
"@discordjs/voice": "^0.16.0",
"axios": "^0.21.1",
"bunyan": "^1.8.15",
"dataloader": "^2.0.0",
"discord.js": "^14.9.0",
"dotenv": "^8.2.0",
"knex": "^0.95.1",
"luxon": "^1.26.0",
"node-osu": "^2.2.1",
"pg": "^8.5.1",
"table-layout": "^1.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/node": "^7.13.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@types/bunyan": "^1.8.6",
"@types/i18n": "^0.13.0",
"@types/luxon": "^1.26.2",
"@types/node": "^14.14.31",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-switch-case": "^1.1.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^5.0.4"
}
}