-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "imagebot",
"version": "1.1.0",
"description": "a simple Discord bot for generating images using OpenAIs DALL·E 2 image generation API.",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"lint": "eslint . --ext .ts",
"test": "jest tests/ --runInBand",
"prettier-format": "prettier ./src/**/*.ts tests/*.ts --write",
"prettier-check": "prettier ./src/**/*.ts tests/*.ts --check",
"start": "ts-node src/bot.ts",
"prod": "npm run deploy-commands && npm run build && node ./dist/bot.js",
"deploy-commands": "ts-node src/utils/deploy_commands.ts"
},
"author": "Kalle Perälä",
"license": "MIT",
"dependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.0",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"openai": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"axios": "^1.1.3",
"babel-jest": "^29.2.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-unicorn": "^44.0.2",
"execa": "^6.1.0",
"prettier": "2.7.1",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.0.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}