blob: b21147300675e58403859af1750304fbecba8f3e [file] [log] [blame]
Skyler Turner66ac7942022-02-24 01:59:22 +00001{
Skyler Grey4ec845c2022-08-06 10:21:50 +01002 "dependencies": {
3 "@discordjs/builders": "^0.12.0",
4 "@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",
9 "discord.js": "13.8.1",
10 "eslint": "^8.21.0",
11 "express": "^4.18.1",
pineafan3a02ea32022-08-11 21:35:04 +010012 "form-data": "^4.0.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010013 "fuse.js": "^6.6.2",
14 "humanize-duration": "^3.27.1",
15 "immutable": "^4.1.0",
Skyler0703d862022-08-08 21:48:59 +010016 "jshaiku": "git+https://github.com/ClicksMinutePer/haiku.git#nucleus",
Skyler Grey4ec845c2022-08-06 10:21:50 +010017 "mongodb": "^4.7.0",
18 "node-tesseract-ocr": "^2.2.1",
19 "pastebin-api": "^5.1.1",
20 "structured-clone": "^0.2.2",
21 "typescript": "^4.5.5",
Skyler Grey4ec845c2022-08-06 10:21:50 +010022 "uuid": "^8.3.2"
23 },
24 "name": "nucleus",
25 "version": "0.0.1",
26 "description": "Nucleus: The core of your server",
27 "main": "dist/index.js",
28 "scripts": {
29 "build": "tsc",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010030 "start": "node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Greyf21323a2022-08-13 23:58:22 +010031 "dev": "rm -rf dist && eslint src --fix && tsc && node --experimental-json-modules --enable-source-maps dist/index.js",
32 "force-dev": "rm -rf dist && eslint src --fix; tsc-suppress && node --experimental-json-modules --enable-source-maps dist/index.js",
33 "lint": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To auto-fix everything possible, please run `yarn lint-fix`'; true",
34 "lint-fix": "echo 'Fixing eslint issues...'; eslint src --fix; echo 'Reformatting...'; prettier --write --loglevel warn --cache .; true",
35 "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 +010036 "setup": "node Installer.js"
Skyler Grey4ec845c2022-08-06 10:21:50 +010037 },
38 "repository": {
39 "type": "git",
40 "url": "git+ssh://git@github.com/ClicksMinutePer/Nucleus.git"
41 },
42 "author": "Clicks",
43 "contributors": [
44 "Minion3665",
45 "PineappleFan"
46 ],
47 "license": "SEE LICENSE IN LICENSE",
48 "bugs": {
49 "url": "https://github.com/ClicksMinutePer/Nucleus/issues"
50 },
51 "homepage": "https://github.com/ClicksMinutePer/Nucleus#readme",
52 "private": false,
53 "type": "module",
54 "devDependencies": {
55 "@typescript-eslint/eslint-plugin": "^5.32.0",
56 "@typescript-eslint/parser": "^5.32.0",
57 "eslint-config-prettier": "^8.5.0",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010058 "prettier": "^2.7.1",
Skyler Greyf21323a2022-08-13 23:58:22 +010059 "prettier-eslint": "^15.0.1",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010060 "tsc-suppress": "^1.0.7"
Skyler Grey4ec845c2022-08-06 10:21:50 +010061 }
Skyler Turner66ac7942022-02-24 01:59:22 +000062}