-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
61
62
63
64
65
{
"name": "pipou-bot",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"check-types": "tsc --noEmit",
"heroku-postbuild": "npm run build",
"format": "prettier --write src tests",
"lint": "eslint src --ext ts",
"lint-fix": "npm run lint -- --fix",
"dev": "npm run start",
"start": "nodemon --watch \"src/**/*.ts\" -e ts --exec \"ts-node src/bot.ts | pino-pretty\"",
"test": "npm run test-only && npm run lint && npm run check-types",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.4.0",
"@lukeed/uuid": "^1.0.1",
"cron": "^1.8.2",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"emoji-regex": "^9.2.2",
"ffmpeg": "0.0.4",
"ffmpeg-static": "^4.3.0",
"fluent-ffmpeg": "^2.1.2",
"fuse.js": "^6.4.6",
"got": "^11.8.2",
"jsdom": "^17.0.0",
"luxon": "^1.26.0",
"make-promises-safe": "^5.1.0",
"pino": "^6.11.2",
"redis": "^3.1.1",
"simple-youtube-api": "^5.2.1",
"ytdl-core": "^4.9.1"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/emoji-regex": "^8.0.0",
"@types/jest": "^26.0.22",
"@types/luxon": "^1.26.3",
"@types/node": "^14.14.41",
"@types/pino": "^6.3.7",
"@types/redis": "^2.8.28",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"pino-pretty": "^4.7.1",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"engines": {
"node": "14.x"
},
"volta": {
"node": "14.18.0"
}
}