-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.11 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "brewbot",
"version": "0.2.0",
"engines": {
"node": ">=16.9",
"npm": ">=8"
},
"scripts": {
"start": "tsc && tsc-alias && node --enable-source-maps out/bot.js",
"test": "ts-node src/test.ts",
"lint": "tsc --noEmit && eslint .",
"watch": "nodemon -e ts --inspect npm start",
"clearCommands": "ts-node src/tools/clearCommands.ts",
"predeploy": "npx prisma generate && npx prisma migrate deploy",
"deploy": "tsc && tsc-alias && node out/bot.js",
"win-redis": "call src\\tools\\redis.bat",
"link": "npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codedrunks/BrewBot.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/codedrunks/BrewBot/issues"
},
"homepage": "https://github.com/codedrunks/BrewBot#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.23",
"@types/prompts": "^2.0.14",
"@types/steamapi": "^2.2.2",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"nodemon": "^2.0.18",
"prompts": "^2.4.2",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.11",
"typescript": "^5.2.2"
},
"dependencies": {
"@discordjs/rest": "^2.0.1",
"@prisma/client": "^4.3.1",
"axios": "^0.27.2",
"better-erela.js-spotify": "^1.3.8",
"canvas": "^2.9.3",
"discord-api-types": "^0.37.56",
"discord.js": "^14.13.0",
"dotenv": "^16.0.0",
"erela.js": "^2.3.3",
"fast-memoize": "^2.5.2",
"fs-extra": "^10.1.0",
"fuse.js": "^6.6.2",
"kleur": "^4.1.4",
"prisma": "^4.3.1",
"redis": "^4.2.0",
"simple-statistics": "^7.7.5",
"steamapi": "^2.2.0",
"svcorelib": "^1.18.1",
"yargs": "^17.5.1"
},
"bin": {
"brewbot": "./src/tools/cli/cli"
},
"nodemonConfig": {
"watch": [
"src/*",
".env"
],
"ignore": [
"out/*",
"node_modules/*",
"test.js",
"test.ts"
]
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}