blob: 2bc01e5b80be3b2692de5caef844e41dadc77f53 [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",
12 "fuse.js": "^6.6.2",
13 "humanize-duration": "^3.27.1",
14 "immutable": "^4.1.0",
15 "jshaiku": "file:../haiku",
16 "mongodb": "^4.7.0",
17 "node-tesseract-ocr": "^2.2.1",
18 "pastebin-api": "^5.1.1",
19 "structured-clone": "^0.2.2",
20 "typescript": "^4.5.5",
21 "unscan": "^1.1.2",
22 "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",
31 "dev": "rm -rf dist && eslint . --fix && tsc && node --experimental-json-modules --enable-source-maps dist/index.js",
32 "force-dev": "rm -rf dist && eslint . --fix; tsc-suppress && node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Grey4ec845c2022-08-06 10:21:50 +010033 "lint": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint .; echo 'To auto-fix everything possible, please run `yarn lint-fix`'; true",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010034 "lint-fix": "echo 'Fixing eslint issues...'; eslint . --fix; echo 'Reformatting...'; prettier --write --loglevel warn --cache .; true",
35 "lint-list": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint .; echo 'To view erors in more detail, please run `yarn lint`; true"
Skyler Grey4ec845c2022-08-06 10:21:50 +010036 },
37 "repository": {
38 "type": "git",
39 "url": "git+ssh://git@github.com/ClicksMinutePer/Nucleus.git"
40 },
41 "author": "Clicks",
42 "contributors": [
43 "Minion3665",
44 "PineappleFan"
45 ],
46 "license": "SEE LICENSE IN LICENSE",
47 "bugs": {
48 "url": "https://github.com/ClicksMinutePer/Nucleus/issues"
49 },
50 "homepage": "https://github.com/ClicksMinutePer/Nucleus#readme",
51 "private": false,
52 "type": "module",
53 "devDependencies": {
54 "@typescript-eslint/eslint-plugin": "^5.32.0",
55 "@typescript-eslint/parser": "^5.32.0",
56 "eslint-config-prettier": "^8.5.0",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010057 "prettier": "^2.7.1",
58 "tsc-suppress": "^1.0.7"
Skyler Grey4ec845c2022-08-06 10:21:50 +010059 }
Skyler Turner66ac7942022-02-24 01:59:22 +000060}