-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "yogbotjs",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"lint": "npx eslint ./src ./tests",
"lint-fix": "npx eslint ./src ./tests --fix",
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "rimraf ./dist",
"start": "node dist/index.js",
"start:dev": "tsc --project tsconfig.build.json && node dist/index.js",
"start:prod": "npm run build && npm run start",
"dev": "nodemon -e ts --exec \"npm run start:dev\"",
"dev:local": "MQTT_URL=mqtt://localhost MQTT_PORT=1883 npm run dev",
"test-unit": "mocha 'tests/unit/**/*.ts' --import=tsx --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yoghurt1/YogBotJS.git"
},
"author": "",
"license": "CC BY-NC 4.0",
"bugs": {
"url": "https://github.com/Yoghurt1/YogBotJS/issues"
},
"homepage": "https://github.com/Yoghurt1/YogBotJS#readme",
"dependencies": {
"@aws-sdk/client-sns": "^3.864.0",
"axios": "^1.15.0",
"discord.js": "^14.21.0",
"http-status-codes": "^2.3.0",
"inversify": "6.2.1",
"luxon": "^3.7.1",
"mqtt": "^5.14.0",
"pino": "^9.7.0",
"pino-pretty": "^13.1.1",
"reflect-metadata": "^0.2.2",
"smithy": "^0.6.3"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@faker-js/faker": "^10.3.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/chai": "^5.2.2",
"@types/luxon": "^3.7.1",
"@types/mocha": "^10.0.10",
"@types/pino": "^7.0.4",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.4",
"chai": "^6.0.1",
"eslint": "^9.32.0",
"eslint-plugin-jsdoc": "^54.1.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^11.7.2",
"nodemon": "^3.1.10",
"proxyquire": "^2.1.3",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"stylistic": "^0.2.4",
"ts-mockito": "^2.6.1",
"tsx": "^4.20.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
}
}