-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "cordscrobbler",
"version": "2.3.2",
"description": "Last.fm scrobbler for songs played by bots on your Discord server.",
"main": "dist/index.js",
"scripts": {
"build": "genversion dist/lib/version.js && tsc",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "ts-node-dev --ignore-watch node_modules src/index.ts"
},
"author": "Erick Almeida",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"genversion": "^3.0.2",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^16.11.6",
"@types/spotify-web-api-node": "^5.0.3",
"axios": "^0.24.0",
"crypto-js": "^4.1.1",
"date-fns": "^2.25.0",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"firebase-admin": "^10.0.0",
"spotify-web-api-node": "^5.0.2",
"topgg-autoposter": "^2.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.5",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^5.0.7",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": "16.x"
}
}