This repository was archived by the owner on Jul 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 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
{
"name": "custom-command-handler",
"version": "1.0.0",
"description": "Runs Cascadebot Custom commands",
"main": "dist/index.ts",
"scripts": {
"dev": "nodemon -r tsconfig-paths/register src/index.ts",
"build": "npm run build:pre && npm run build:compile && npm run build:post",
"start": "node dist/index.js",
"lint": "eslint --ext .ts,.js,.json src/",
"lint:fix": "eslint --fix --ext .ts,.js,.json src/",
"lint:report": "eslint --ext .ts,.js,.json --output-file eslint_report.json --format json src/",
"build:pre": "rimraf dist/",
"build:compile": "tsc && tsc-alias",
"build:post": "copyfiles -u 1 src/sandboxed/scripts/*.js src/example/*.js dist/"
},
"author": "cascadeorg",
"license": "MIT",
"dependencies": {
"@cloudamqp/amqp-client": "^2.1.0",
"isolated-vm": "^4.4.1",
"joi": "^17.6.2",
"neat-config": "^1.0.0",
"winston": "^3.8.2",
"winston-console-format": "^1.0.8"
},
"devDependencies": {
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"copyfiles": "^2.4.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
}
}