-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "bludoodapi",
"description": "My personal API, hosted at https://api.bludood.com.",
"version": "1.1.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/BluDood/BluDoodAPI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BluDood/BluDoodAPI/issues"
},
"homepage": "https://github.com/BluDood/BluDoodAPI#readme",
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "tsc-watch --onSuccess \"node .\""
},
"type": "module",
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-file-routing": "^3.0.3",
"express-ws": "^5.0.2",
"node-html-parser": "^6.1.13",
"sharp": "^0.33.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-ws": "^3.0.5",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2"
}
}