forked from NinoDiscord/Nino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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": "nino",
"description": "🔨 Advanced and cute moderation discord bot as an entry of Discord's Hack Week",
"version": "0.9.4",
"homepage": "https://nino.augu.dev",
"license": "MIT",
"repository": "https://github.com/NinoDiscord/Nino",
"private": true,
"bugs": "https://github.com/NinoDiscord/Nino/issues/new?assignees=&labels=bug&template=bug_report.md&title=",
"main": "dist/index.js",
"scripts": {
"build:watch": "yarn lint && yarn clean && yarn tsc -w",
"build": "yarn lint && yarn clean && yarn tsc",
"clean": "rm -fr dist",
"main": "node dist/index.js",
"lint": "eslint src --ext .ts --fix",
"test": "jest --config jest.config.js --forceExit",
"dev": "nodemon dist/index.js",
"docker": "docker build -t nino:latest .",
"main:docker": "docker create --name Nino nino"
},
"maintainers": [
"August (Chris)",
"dondish"
],
"contributors": [
"Kyle (dvhe)",
"Wesselgame",
"ohlookitsderpy"
],
"dependencies": {
"@augu/immutable": "0.4.2",
"@augu/sysinfo": "0.2.1",
"@sentry/node": "5.22.3",
"common-tags": "1.8.0",
"eris": "0.13.3",
"inversify": "5.0.1",
"inversify-inject-decorators": "3.1.0",
"ioredis": "4.17.3",
"js-yaml": "3.14.0",
"leeks.js": "0.0.9",
"long-timeout": "0.1.1",
"mongoose": "5.10.2",
"ms": "2.1.2",
"reflect-metadata": "0.1.13",
"wumpfetch": "0.3.1"
},
"devDependencies": {
"@types/common-tags": "1.8.0",
"@types/ioredis": "4.17.3",
"@types/jest": "26.0.10",
"@types/js-yaml": "3.12.4",
"@types/mongoose": "5.7.36",
"@types/ms": "0.7.31",
"@types/node": "13.13.5",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint": "7.7.0",
"jest": "26.4.2",
"jest-mock-extended": "1.0.10",
"nodemon": "2.0.4",
"ps-list": "7.2.0",
"ts-jest": "26.3.0",
"typescript": "4.0.2"
}
}