-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "nerd-junior",
"version": "1.0.0",
"description": "This is a utility bot that handles specific functions in Suggestions-related Discord servers.",
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node dist/lib/index.js",
"build:win": "rimraf dist && tsc",
"build:linux": "rm -rf dist && tsc",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint --fix ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suggestionsbot/nerd-junior.git"
},
"author": "acollierr17 <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/suggestionsbot/nerd-junior/issues"
},
"homepage": "https://github.com/suggestionsbot/nerd-junior#readme",
"devDependencies": {
"@types/common-tags": "1.8.1",
"@types/cron": "1.7.3",
"@types/dotenv-flow": "3.2.0",
"@types/node": "16.11.10",
"@types/redis": "2.8.32",
"@types/ws": "8.2.0",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "8.3.0",
"rimraf": "3.0.2",
"typescript": "4.5.2"
},
"dependencies": {
"bufferutil": "^4.0.2",
"common-tags": "^1.8.0",
"cron": "^1.8.2",
"discord.js": "^13.3.1",
"dotenv-flow": "^3.2.0",
"erlpack": "discord/erlpack",
"redis": "^4.0.0",
"zlib-sync": "^0.1.7"
}
}