-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
{
"name": "@lyricalsoul/lastgram",
"version": "2.0.0-alpha.1",
"description": "lastgram made simple",
"main": "dist/index.js",
"type": "module",
"author": "lyricalsoul <[email protected]>",
"scripts": {
"start": "bun src/index.ts",
"start:dev": "bun --watch src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"database:generate": "prisma generate",
"database:deploy": "prisma migrate deploy",
"i18n:sync": "npx i18next-locales-sync -p en -s pt es -l path/to/locales/folder --spaces 2",
"cli:updateDiscordCommands": "node dist/cli.js updateDiscordCommands"
},
"nodemonConfig": {
"ignore": [
"src/**"
]
},
"devDependencies": {
"@types/marked": "^6.0.0",
"@types/node": "^22.9.0",
"chokidar": "^4.0.1",
"dotenv": "^16.4.5",
"prisma": "^5.22.0"
},
"dependencies": {
"@musicorum/lastfm": "^0.3.1",
"@polka/parse": "^1.0.0-next.0",
"@polka/send-type": "^0.5.2",
"@prisma/client": "^5.22.0",
"cassandra-driver": "^4.7.2",
"country-emoji": "^1.5.6",
"date-fns": "^4.1.0",
"discord.js": "^14.16.3",
"genius-lyrics": "^4.4.7",
"genius-lyrics-api": "^3.2.1",
"i18next": "^23.16.5",
"i18next-fs-backend": "^2.3.2",
"marked": "^15.0.0",
"polka": "^0.5.2",
"prom-client": "^15.1.3",
"redis": "^4.7.0"
}
}