-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 947 Bytes
/
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
{
"name": "discord-bot",
"version": "0.0.0",
"private": true,
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node . | pino-pretty",
"build": "node scripts/prebuild && tsc && node scripts/postbuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zyrouge/discord-bot-boilerplate.git"
},
"author": "ZYROUGE",
"license": "ISC",
"bugs": {
"url": "https://github.com/zyrouge/discord-bot-boilerplate/issues"
},
"homepage": "https://github.com/zyrouge/discord-bot-boilerplate#readme",
"devDependencies": {
"@types/node": "^14.14.41",
"@types/pino": "^6.3.7",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"eris": "^0.15.0",
"genius-lyrics": "^4.2.7",
"module-alias": "^2.2.2",
"pino": "^6.11.3",
"pino-pretty": "^4.7.1"
},
"_moduleAliases": {
"@": "dist"
}
}