-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "mees-music",
"version": "1.0.0",
"description": "An advance music bot, build with TypeScript using module Discord.js-Light.",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run delete && npm run compile",
"clean": "rimraf dist",
"delete": "rm -rf dist",
"compile": "tsc --build tsconfig.json",
"start": "node -r dotenv/config dist/index.js",
"dev": "nodemon -e ts --exec \"yarn build && yarn start\""
},
"author": "Amelia Kiara",
"license": "AGPL-3.0",
"dependencies": {
"@sentry/node": "^6.17.1",
"body-parser": "^1.19.1",
"chalk": "^4.1.2",
"cookie-parser": "^1.4.6",
"discord.js-light": "^4.5.2",
"ejs": "^3.1.6",
"erela.js": "^2.3.3",
"erela.js-apple": "^1.2.6",
"erela.js-deezer": "^1.0.7",
"erela.js-facebook": "^1.0.4",
"erela.js-filter": "^0.2.3",
"express": "^4.17.2",
"lavasfy": "^2.3.0",
"lodash": "^4.17.21",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.34",
"mongoose": "^6.1.6",
"require-all": "^3.0.0",
"snekfetch": "^4.0.4",
"topgg-autoposter": "^2.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.178",
"@types/moment-duration-format": "^2.2.3",
"@types/node": "^17.0.5",
"@types/require-all": "^3.0.3",
"@types/snekfetch": "^4.0.4",
"dotenv": "^10.0.0",
"moment": "^2.29.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}