-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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
67
68
69
70
71
72
73
74
{
"name": "triangle-chan",
"version": "0.3.3",
"description": "Triangle Fraternity's own waifu Discord bot!",
"keywords": [
"bot",
"discord",
"typescript"
],
"type": "module",
"main": "dist/client.js",
"scripts": {
"build": "tsc",
"format": "prettier -w .",
"format-check": "prettier -c .",
"lint": "eslint src",
"test": "jest",
"dev": "node --loader ts-node/esm/transpile-only src/index.ts",
"start": "nodemon --ignore db.json --exec node --loader ts-node/esm/transpile-only src/index.ts",
"serve": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evaneliasyoung/triangle-chan.git"
},
"author": "Evan Elias Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/evaneliasyoung/triangle-chan"
},
"homepage": "https://github.com/evaneliasyoung/triangle-chan#readme",
"private": true,
"dependencies": {
"@discordx/importer": "^1.1.10",
"@discordx/pagination": "^2.2.2",
"@discordx/utilities": "^4.3.3",
"axios": "^0.26.1",
"bignumber.js": "^9.0.2",
"cheerio": "^1.0.0-rc.12",
"colors": "1.4.0",
"discord.js": "^13.8.0",
"discordx": "^9.5.2",
"dotenv": "^16.0.1",
"emoji-regex": "^10.1.0",
"humanize-duration": "^3.27.3",
"luxon": "^3.0.3",
"mysql2": "^2.3.3",
"nodemon": "^2.0.19",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.4.0",
"typeorm": "^0.3.6",
"winston": "^3.7.2"
},
"devDependencies": {
"@jest/globals": "^29.0.3",
"@types/humanize-duration": "^3.27.1",
"@types/jest": "^27.4.1",
"@types/luxon": "^3.0.1",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.23.1",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}