-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "venice-slack",
"version": "1.0.0",
"description": "Slack bot that generates images from text prompts using the Venice AI API",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "ts-node-dev --respawn src/app.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit",
"start:prod": "node dist/app.js",
"render-build": "yarn install --frozen-lockfile --production=false && yarn build",
"render-start": "yarn start",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@slack/web-api": "^7.8.0",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"axios-mock-adapter": "^2.1.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}