-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "strange-image-api",
"version": "1.1.0",
"description": "Image Manipulation/Generation API",
"main": "dist/src/server.js",
"scripts": {
"start": "node .",
"dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/server.ts\"",
"build": "rimraf ./dist && tsc"
},
"author": "Sai Teja M",
"license": "ISC",
"dependencies": {
"canvacord": "^5.4.8",
"canvas": "^2.10.2",
"canvas-constructor": "^4.1.0",
"cors": "^2.8.5",
"discord-image-generation": "^1.4.14",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.6.0",
"helmet": "^6.0.0",
"mongoose": "^6.7.1",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node": "^18.7.18",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"keywords": [
"api",
"canvas",
"canvacord",
"image-api",
"image-manipulation",
"image-generation",
"discord-bot"
]
}