This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
{
"name": "dynamica",
"license": "MIT",
"version": "2023.2.0",
"repository": {
"type": "git",
"url": "https://github.com/DynamicaBot/Dynamica"
},
"bugs": {
"url": "https://github.com/DynamicaBot/Dynamica/issues"
},
"homepage": "https://dynamica.dev",
"readme": "README.md",
"author": {
"name": "Sebastian Pietschner",
"url": "https://www.sebasptsch.dev"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"type": "module",
"dependencies": {
"@discordjs/rest": "^1.0.0",
"@dynamicabot/signales": "^2.0.15",
"@prisma/client": "^4.11.0",
"bufferutil": "^4.0.6",
"chalk": "^5.1.2",
"discord-api-types": "^0.37.20",
"discord.js": "^14.7.1",
"dotenv": "^16.0.0",
"emoji-random-list": "^1.1.3",
"fuse.js": "^6.5.3",
"lodash": "^4.17.21",
"mqtt": "^4.3.7",
"node-cron": "^3.0.2",
"reflect-metadata": "^0.1.13",
"romans": "^2.0.3",
"typedi": "^0.10.0",
"utf-8-validate": "^6.0.2"
},
"scripts": {
"start": "node --enable-source-maps .",
"dev": "tsup src/index.ts --watch",
"prettier": "prettier --write ./src",
"lint": "eslint --ext .ts",
"generate": "prisma generate",
"deploy": "echo \"This script is no longer used. All you need to do is run yarn start and deployment happens automatically.\"",
"undeploy": "echo \"If you need to remove commands use mqtt.\"",
"build": "tsup"
},
"devDependencies": {
"@swc/core": "^1.3.20",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.3",
"@types/node-cron": "^3.0.7",
"@types/romans": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.8.2",
"prisma": "^4.8.1",
"tsup": "^6.7.0",
"typescript": "^5.0.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}