blob: f28878f542f7da32b0e428e6ed2f7b04cbb12a42 [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",
6 "@ungap/structured-clone": "^1.0.1",
7 "agenda": "^4.3.0",
8 "body-parser": "^1.20.0",
TheCodedProfa112f612023-01-28 18:06:45 -05009 "discord.js": "^14.7.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +010010 "eslint": "^8.21.0",
11 "express": "^4.18.1",
12 "fuse.js": "^6.6.2",
13 "humanize-duration": "^3.27.1",
14 "immutable": "^4.1.0",
TheCodedProff4facde2023-01-28 13:42:48 -050015 "lodash": "^4.17.21",
Skyler Grey4ec845c2022-08-06 10:21:50 +010016 "mongodb": "^4.7.0",
PineaFan752af462022-12-31 21:59:38 +000017 "node-fetch": "^3.3.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010018 "node-tesseract-ocr": "^2.2.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +010019 "structured-clone": "^0.2.2",
TheCodedProf9c51a7e2023-02-27 17:11:13 -050020 "systeminformation": "^5.17.3"
21 },
pineafan96228bd2023-02-21 14:22:55 +000022 "resolutions": {
TheCodedProfa6ace072023-02-22 13:15:16 -050023 "discord-api-types": "0.37.23"
pineafan96228bd2023-02-21 14:22:55 +000024 },
Skyler Grey4ec845c2022-08-06 10:21:50 +010025 "name": "nucleus",
26 "version": "0.0.1",
27 "description": "Nucleus: The core of your server",
28 "main": "dist/index.js",
29 "scripts": {
30 "build": "tsc",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010031 "start": "node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Greyf21323a2022-08-13 23:58:22 +010032 "dev": "rm -rf dist && eslint src --fix && tsc && node --experimental-json-modules --enable-source-maps dist/index.js",
PineaFan64486c42022-12-28 09:21:04 +000033 "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 +010034 "lint": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To auto-fix everything possible, please run `yarn lint-fix`'; true",
35 "lint-fix": "echo 'Fixing eslint issues...'; eslint src --fix; echo 'Reformatting...'; prettier --write --loglevel warn --cache .; true",
36 "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 -050037 "setup": "node Installer.js",
TheCodedProf60a1f492023-01-18 16:59:20 -050038 "win-force-build": "clear | rm -r dist | tsc-suppress"
Skyler Grey4ec845c2022-08-06 10:21:50 +010039 },
40 "repository": {
41 "type": "git",
42 "url": "git+ssh://git@github.com/ClicksMinutePer/Nucleus.git"
43 },
44 "author": "Clicks",
45 "contributors": [
46 "Minion3665",
47 "PineappleFan"
48 ],
49 "license": "SEE LICENSE IN LICENSE",
50 "bugs": {
51 "url": "https://github.com/ClicksMinutePer/Nucleus/issues"
52 },
53 "homepage": "https://github.com/ClicksMinutePer/Nucleus#readme",
54 "private": false,
55 "type": "module",
56 "devDependencies": {
TheCodedProfa112f612023-01-28 18:06:45 -050057 "@types/lodash": "^4.14.191",
Skyler Grey4ec845c2022-08-06 10:21:50 +010058 "@typescript-eslint/eslint-plugin": "^5.32.0",
59 "@typescript-eslint/parser": "^5.32.0",
60 "eslint-config-prettier": "^8.5.0",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010061 "prettier": "^2.7.1",
Skyler Greyf21323a2022-08-13 23:58:22 +010062 "prettier-eslint": "^15.0.1",
TheCodedProf9c51a7e2023-02-27 17:11:13 -050063 "tsc-suppress": "^1.0.7",
64 "typescript": "^4.9.4"
Skyler Grey4ec845c2022-08-06 10:21:50 +010065 }
Skyler Turner66ac7942022-02-24 01:59:22 +000066}