This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "@menudocs/mandroc",
"version": "3.0.0",
"description": "Version 3 of Mandroc: The guild bound bot for the MenuDocs Discord server.",
"main": "dist/index.js",
"repository": "/~https://github.com/MenuDocs/MenuDocs-Rewrite.git",
"author": "MenuDocs Team",
"contributors": [
"JonasSchiott",
"melike2d"
],
"_moduleAliases": {
"@lib": "dist/lib"
},
"scripts": {
"build": "rm -rf dist && tsc --removeComments",
"start:prod": "NODE_ENV=production node .",
"start:dev": "NODE_ENV=development node .",
"format": "prettier --write src/",
"dev": "yarn build && yarn start:dev",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate up"
},
"dependencies": {
"@ayanaware/errors": "^1.1.0",
"@ayanaware/logger": "^2.2.1",
"@prisma/client": "^2.21.2",
"@sentry/node": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"ansi-styles": "^5.2.0",
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"ioredis": "^4.25.0",
"js-beautify": "^1.13.5",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mustache": "^4.2.0",
"phin": "^3.5.1",
"reflect-metadata": "^0.1.13",
"string-similarity": "^4.0.3",
"turndown": "^7.0.0",
"twemoji": "^13.1.0"
},
"devDependencies": {
"@types/ioredis": "^4.22.2",
"@types/js-beautify": "^1.13.1",
"@types/ms": "^0.7.31",
"@types/mustache": "^4.1.1",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.9",
"@types/string-similarity": "^4.0.0",
"@types/turndown": "^5.0.0",
"@types/twemoji": "^12.1.1",
"prettier": "^2.2.1",
"prisma": "2.21.2",
"type-fest": "^1.0.1",
"typescript": "4.1.3"
},
"engines": {
"node": ">=14.x.x"
},
"license": "GPL-3.0-only"
}