-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "yoimiya",
"private": true,
"license": "MIT",
"main": "build/src/main.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/main.ts",
"start": "node .",
"lint": "eslint .",
"format": "prettier . --write",
"download": "node build/src/downloader.js",
"generate": "node build/src/generator.js"
},
"dependencies": {
"@discordx/importer": "^1.1.9",
"@discordx/pagination": "^2.1.2",
"@discordx/utilities": "^4.3.3",
"big.js": "^6.2.0",
"discord-api-types": "^0.30.0",
"discord.js": "^13.7.0",
"discordx": "^9.6.0",
"dotenv": "^16.0.1",
"join-images": "^1.1.3",
"mongoose": "5.10.19",
"node-fetch": "^2.6.7",
"p-limit": "3",
"reflect-metadata": "^0.1.13",
"sharp": "^0.30.7",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/big.js": "^6.1.4",
"@types/mongoose": "5.10.5",
"@types/node": "^17.0.33",
"@types/sharp": "^0.30.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.16",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}