-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "romanager-bot-oss",
"description": "A free, feature-rich Discord-to-Roblox bot.",
"author": "jaydensar",
"version": "1.2.0-oss",
"license": "AGPL-3.0",
"homepage": "https://romanager.jaydensar.net",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/RoManager-org/romanager-oss.git"
},
"bugs": {
"url": "https://github.com/RoManager-org/bot/issues"
},
"engines": {
"node": "16.x",
"npm": "7.x"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"migrate:reset": "prisma migrate reset",
"db:push": "prisma db push",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon .",
"start": "node ."
},
"dependencies": {
"@prisma/client": "^2.29.1",
"bloxy": "^5.7.3",
"discord-akairo": "github:discord-akairo/discord-akairo",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"fuzzy-search": "^3.2.1",
"got": "^11.8.2",
"tslib": "^2.3.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"erlpack": "discord/erlpack",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fuzzy-search": "^2.1.1",
"@types/tough-cookie": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"prisma": "^2.29.1",
"typescript": "^4.3.5"
}
}