-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
{
"name": "discord_ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16.13.2"
},
"scripts": {
"dev": "ts-node src/index.ts dev",
"prod": "node dist/index.js prod",
"start": "node dist/index.js prod",
"lint": "eslint . --ext .ts",
"build": "rm -rf ./dist/ && tsc && pm2 restart 2"
},
"keywords": [],
"author": "Mitchdev",
"license": "ISC",
"dependencies": {
"cloudconvert": "^2.2.4",
"color-thief-node": "^1.0.4",
"discord-api-types": "^0.28.0",
"discord.js": "^14.0.0-dev.1643112249.5ccdb0a",
"dotenv": "^14.3.2",
"glob": "^7.2.0",
"html-entities": "^2.3.2",
"https": "^1.0.0",
"node-fetch": "^2.6.7",
"openai": "^3.2.1",
"sequelize": "^6.15.0",
"sharp": "^0.30.1",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/color-thief-node": "^1.0.1",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.13",
"@types/node-fetch": "^2.6.0",
"@types/sharp": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"gts": "^3.1.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}