blob: 30834cbfef00b7c137d3cf8753432603cc11c3ea [file] [log] [blame]
Skyler Turner66ac7942022-02-24 01:59:22 +00001{
Skyler Grey4ec845c2022-08-06 10:21:50 +01002 "dependencies": {
PineaFan64486c42022-12-28 09:21:04 +00003 "@discordjs/rest": "^0.2.0-canary.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +01004 "@hokify/agenda": "^6.2.12",
5 "@tsconfig/node18-strictest-esm": "^1.0.0",
TheCodedProff4facde2023-01-28 13:42:48 -05006 "@types/lodash": "^4.14.191",
PineaFan64486c42022-12-28 09:21:04 +00007 "@types/node-cron": "^3.0.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +01008 "@ungap/structured-clone": "^1.0.1",
9 "agenda": "^4.3.0",
PineaFan64486c42022-12-28 09:21:04 +000010 "ansi-styles": "^6.1.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010011 "body-parser": "^1.20.0",
PineaFan64486c42022-12-28 09:21:04 +000012 "chalk": "^5.0.0",
13 "deno": "^0.1.1",
14 "discord.js": "14.7.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +010015 "eslint": "^8.21.0",
16 "express": "^4.18.1",
pineafan3a02ea32022-08-11 21:35:04 +010017 "form-data": "^4.0.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010018 "fuse.js": "^6.6.2",
19 "humanize-duration": "^3.27.1",
20 "immutable": "^4.1.0",
TheCodedProff4facde2023-01-28 13:42:48 -050021 "lodash": "^4.17.21",
Skyler Grey4ec845c2022-08-06 10:21:50 +010022 "mongodb": "^4.7.0",
PineaFan64486c42022-12-28 09:21:04 +000023 "node-cron": "^3.0.0",
PineaFan752af462022-12-31 21:59:38 +000024 "node-fetch": "^3.3.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010025 "node-tesseract-ocr": "^2.2.1",
26 "pastebin-api": "^5.1.1",
27 "structured-clone": "^0.2.2",
PineaFan1dee28f2023-01-16 22:09:07 +000028 "systeminformation": "^5.17.3",
TheCodedProff4facde2023-01-28 13:42:48 -050029 "typescript": "^4.9.4",
Skyler Grey4ec845c2022-08-06 10:21:50 +010030 "uuid": "^8.3.2"
31 },
32 "name": "nucleus",
33 "version": "0.0.1",
34 "description": "Nucleus: The core of your server",
35 "main": "dist/index.js",
36 "scripts": {
37 "build": "tsc",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010038 "start": "node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Greyf21323a2022-08-13 23:58:22 +010039 "dev": "rm -rf dist && eslint src --fix && tsc && node --experimental-json-modules --enable-source-maps dist/index.js",
PineaFan64486c42022-12-28 09:21:04 +000040 "force-dev": "clear; rm -rf dist; tsc-suppress && node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Greyf21323a2022-08-13 23:58:22 +010041 "lint": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To auto-fix everything possible, please run `yarn lint-fix`'; true",
42 "lint-fix": "echo 'Fixing eslint issues...'; eslint src --fix; echo 'Reformatting...'; prettier --write --loglevel warn --cache .; true",
43 "lint-list": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To view errors in more detail, please run `yarn lint`'; true",
TheCodedProf52679812023-01-17 21:38:02 -050044 "setup": "node Installer.js",
TheCodedProf60a1f492023-01-18 16:59:20 -050045 "win-force-build": "clear | rm -r dist | tsc-suppress"
Skyler Grey4ec845c2022-08-06 10:21:50 +010046 },
47 "repository": {
48 "type": "git",
49 "url": "git+ssh://git@github.com/ClicksMinutePer/Nucleus.git"
50 },
51 "author": "Clicks",
52 "contributors": [
53 "Minion3665",
54 "PineappleFan"
55 ],
56 "license": "SEE LICENSE IN LICENSE",
57 "bugs": {
58 "url": "https://github.com/ClicksMinutePer/Nucleus/issues"
59 },
60 "homepage": "https://github.com/ClicksMinutePer/Nucleus#readme",
61 "private": false,
62 "type": "module",
63 "devDependencies": {
64 "@typescript-eslint/eslint-plugin": "^5.32.0",
65 "@typescript-eslint/parser": "^5.32.0",
66 "eslint-config-prettier": "^8.5.0",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010067 "prettier": "^2.7.1",
Skyler Greyf21323a2022-08-13 23:58:22 +010068 "prettier-eslint": "^15.0.1",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010069 "tsc-suppress": "^1.0.7"
Skyler Grey4ec845c2022-08-06 10:21:50 +010070 }
Skyler Turner66ac7942022-02-24 01:59:22 +000071}