-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.32 KB
/
package.json
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": "mashu",
"version": "1.2.4",
"description": "Private moderation bot",
"engines": {
"node": ">=14",
"yarn": ">=1.0.0 <2.0.0"
},
"author": {
"email": "pepijn@vdbroek.dev",
"name": "Pepijn van den Broek",
"url": "https://vdbroek.dev"
},
"main": "src/index.ts",
"license": "MIT",
"homepage": "https://github.com/Pepijn98/Mashu#readme",
"bugs": {
"email": "pepijn@vdbroek.dev",
"url": "https://github.com/Pepijn98/Mashu/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pepijn98/Mashu.git"
},
"scripts": {
"deploy": "pm2 start ecosystem.config.js --env production",
"start": "cross-env NODE_ENV=production ts-node -r tsconfig-paths/register src/index.ts",
"dev": "cross-env NODE_ENV=development ts-node -r tsconfig-paths/register src/index.ts",
"debug": "cross-env DEBUG=true NODE_ENV=development ts-node -r tsconfig-paths/register src/index.ts",
"prebuild": "if exist \".\\dist\" rd /q /s \"dist\"",
"pretest": "yarn pretty",
"build": "tsc",
"test": "tsc --noEmit",
"clean": "rm -rf ./node_modules ./yarn.lock ./package-lock.json",
"format": "prettier --write \"src/**/*.{ts,js}\" \"./*.{ts,js}\"",
"lint": "eslint \"src/**/*.{ts,js}\" \"./*.{ts,js}\" --fix",
"pretty": "yarn format && yarn lint"
},
"dependencies": {
"@kurozero/collection": "^0.5.1",
"bufferutil": "^4.0.5",
"chalk": "^5.0.0",
"eris": "git+ssh://git@github.com:Pepijn98/eris-pb-custom.git",
"erlpack": "abalabahaha/erlpack",
"moment": "^2.29.1",
"mongoose": "^6.1.3",
"os-utils": "oscmejia/os-utils",
"winston": "^3.3.3",
"yukikaze": "^1.0.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
}
}