-
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.19 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.19 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": {
"@polygon.io/client-js": "^7.3.2",
"cloudconvert": "^2.3.6",
"color-thief-node": "^1.0.4",
"discord.js": "^14.14.1",
"dotenv": "^16.4.1",
"glob": "^10.3.10",
"html-entities": "^2.4.0",
"https": "^1.0.0",
"mysql2": "^3.9.1",
"openai": "^6.37.0",
"sequelize": "^6.36.0",
"sharp": "^0.32.6",
"sqlite3": "^5.1.7",
"undici": "^6.6.2"
},
"devDependencies": {
"@types/color-thief-node": "^1.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^20.11.16",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"gts": "^5.2.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}