-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "slackgpt",
"version": "1.0.0",
"type": "module",
"engines": {
"node": "16.x"
},
"scripts": {
"start": "node dist/index.js",
"dev": "concurrently \"npm:dev:*\"",
"dev:node": "nodemon src/index.ts",
"dev:db": "docker compose -f docker-compose.dev.yml up -d",
"build": "rimraf dist && tsc --project tsconfig.build.json",
"lint": "eslint --ignore-path .gitignore",
"test": "jest --passWithNoTests",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/benjiJanssens/SlackGPT.git"
},
"keywords": [
"typescript"
],
"author": "Benjamin Janssens <benji.janssens@gmail.com> (https://benjijanssens.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/benjiJanssens/SlackGPT/issues",
"email": "benji.janssens@gmail.com"
},
"homepage": "https://github.com/benjiJanssens/SlackGPT#readme",
"dependencies": {
"@keyv/redis": "^2.5.6",
"@prisma/client": "^4.11.0",
"@sentry/node": "^7.43.0",
"@sentry/tracing": "^7.43.0",
"@sentry/types": "^7.43.0",
"@slack/bolt": "^3.12.2",
"chatgpt": "^5.0.6",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"isomorphic-fetch": "^3.0.0",
"keyv": "^4.5.2",
"node-self": "^1.0.2",
"prisma-json-types-generator": "^2.3.1"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"esm": "^3.2.25",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"prisma": "^4.11.0",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}