blob: d4a402502c4433023e222ce38f3f4a17c61d6da6 [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",
PineaFan64486c42022-12-28 09:21:04 +00006 "@types/node-cron": "^3.0.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +01007 "@ungap/structured-clone": "^1.0.1",
8 "agenda": "^4.3.0",
PineaFan64486c42022-12-28 09:21:04 +00009 "ansi-styles": "^6.1.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010010 "body-parser": "^1.20.0",
PineaFan64486c42022-12-28 09:21:04 +000011 "chalk": "^5.0.0",
12 "deno": "^0.1.1",
13 "discord.js": "14.7.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +010014 "eslint": "^8.21.0",
15 "express": "^4.18.1",
pineafan3a02ea32022-08-11 21:35:04 +010016 "form-data": "^4.0.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010017 "fuse.js": "^6.6.2",
18 "humanize-duration": "^3.27.1",
19 "immutable": "^4.1.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010020 "mongodb": "^4.7.0",
PineaFan64486c42022-12-28 09:21:04 +000021 "node-cron": "^3.0.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010022 "node-tesseract-ocr": "^2.2.1",
23 "pastebin-api": "^5.1.1",
24 "structured-clone": "^0.2.2",
25 "typescript": "^4.5.5",
Skyler Grey4ec845c2022-08-06 10:21:50 +010026 "uuid": "^8.3.2"
27 },
28 "name": "nucleus",
29 "version": "0.0.1",
30 "description": "Nucleus: The core of your server",
31 "main": "dist/index.js",
32 "scripts": {
33 "build": "tsc",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010034 "start": "node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Greyf21323a2022-08-13 23:58:22 +010035 "dev": "rm -rf dist && eslint src --fix && tsc && node --experimental-json-modules --enable-source-maps dist/index.js",
PineaFan64486c42022-12-28 09:21:04 +000036 "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 +010037 "lint": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To auto-fix everything possible, please run `yarn lint-fix`'; true",
38 "lint-fix": "echo 'Fixing eslint issues...'; eslint src --fix; echo 'Reformatting...'; prettier --write --loglevel warn --cache .; true",
39 "lint-list": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To view errors in more detail, please run `yarn lint`'; true",
Skyler Grey11236ba2022-08-08 21:13:33 +010040 "setup": "node Installer.js"
Skyler Grey4ec845c2022-08-06 10:21:50 +010041 },
42 "repository": {
43 "type": "git",
44 "url": "git+ssh://git@github.com/ClicksMinutePer/Nucleus.git"
45 },
46 "author": "Clicks",
47 "contributors": [
48 "Minion3665",
49 "PineappleFan"
50 ],
51 "license": "SEE LICENSE IN LICENSE",
52 "bugs": {
53 "url": "https://github.com/ClicksMinutePer/Nucleus/issues"
54 },
55 "homepage": "https://github.com/ClicksMinutePer/Nucleus#readme",
56 "private": false,
57 "type": "module",
58 "devDependencies": {
59 "@typescript-eslint/eslint-plugin": "^5.32.0",
60 "@typescript-eslint/parser": "^5.32.0",
61 "eslint-config-prettier": "^8.5.0",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010062 "prettier": "^2.7.1",
Skyler Greyf21323a2022-08-13 23:58:22 +010063 "prettier-eslint": "^15.0.1",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010064 "tsc-suppress": "^1.0.7"
Skyler Grey4ec845c2022-08-06 10:21:50 +010065 }
Skyler Turner66ac7942022-02-24 01:59:22 +000066}